我开始制作一些wordpress插件,所以我是一个新手。我只是想知道如何更改页面的张贴形式。例如,添加一些其他输入(文件或文本类型)?我正在尝试使用
add_filter(\'comments_template\', \'add_new_fields\');
但什么都没发生。我开始制作一些wordpress插件,所以我是一个新手。我只是想知道如何更改页面的张贴形式。例如,添加一些其他输入(文件或文本类型)?我正在尝试使用
add_filter(\'comments_template\', \'add_new_fields\');
但什么都没发生。我需要显示作者图片和帖子。我使用以下代码显示带有作者图像的帖子。$the_query = new WP_Query(\"post_type=post&paged=\".get_query_var(\'paged\')); while ( $the_query->have_posts() ) : $the_query->the_post(); <?php the_excerpt(); ?> <p><?php the_auth