如何在wordpress中的“the_content()”之前和之后添加代码

时间:2013-12-24 06:27:36

标签: wordpress

我希望我的输出像这样 -

echo 'codeBefore';
the_content();
echo 'codeAfter';

问题是,我使用的插件之一在内容&之前和之后插入其代码。我得到的输出是这样的。

  echo 'codeBefore';
  <plugin code>
  the_content();
  <plugin code>
  echo 'codeAfter';

如何在任何其他插件代码之前将代码显示在前面?

1 个答案:

答案 0 :(得分:1)

代码

下的用户
 function slideshow_fun( $content ) {
        if ( is_single() ) {
            $custom_content = '[plugin_shortcode]';
            $custom_content .= $content;
            return $custom_content;
        } else {
            return $content;
        }
    }
    add_filter( 'the_content', 'slideshow_fun' );

More detail and Credit