Wordpress:html代码低于内容

时间:2016-04-22 13:12:43

标签: php wordpress wordpress-plugin

我为WordPress开发了一个插件。在这个插件中,我生成一个HTML代码并将其添加到帖子中。有人想在内容/帖子字段下添加生成的HTML吗?现在我生成代码并使用此方法直接在内容下面添加:

add_filter('the_content', array('xxx', 'custom_content_after_post'));

这是我想要的计划图片:

enter image description here

1 个答案:

答案 0 :(得分:1)

试试这个:

您的HTML将在评论表后添加

在function.php中

add_action( 'comment_form','my_form_func' );
function my_form_func($args){    
    ?>
    <h2>This is my html text</h2>
    <?php
}