短代码无法在wordpress中的正确位置工作

时间:2013-02-23 12:40:15

标签: wordpress shortcode

我已经编写了一个函数并添加了短代码但是当我尝试在worpdress页面编辑器的中心使用该短代码时,它们会自动进入页面顶部而不能在正确的位置工作。这是我在function.php中的代码

function get_review() {  ?>
    <div style="clear:both;"></div>
    <div id="banner-fade">
        <ul class="bjqs">
            <?php query_posts('cat=5&showposts=5&order=DESC'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                <li>
                    <div class="Call-to-action">
                        <div class="inside clearfix">
                            <h4>What our clients say...</h4>
                            <h5 style="width: 645px; text-align: justify;">
                                <?php   the_content(); ?>
                            </h5>
                            <a href="http://www.360creditconsulting.com/products-page/" class="call_to_action  call_to_action_contact">
                                <span>Get Started Now</span>
                            </a>
                        </div>
                    </div>
                </li>
            <?php endwhile; endif; wp_reset_query(); ?>
        </ul>
    </div> 
    <?php 
}
add_shortcode('get_review', 'get_review');

我在页面中使用: 一些内容...... [get_review]

之后,他们自动显示出来 o / p短代码 一些内容......

这是我正在检查的网址 http://www.360creditconsulting.com/test-page/

任何帮助都将不胜感激。我完全陷入困境。

提前致谢。

1 个答案:

答案 0 :(得分:0)

在脚本末尾使用这些行。

$output_string = ob_get_contents();
ob_end_clean();
return $output_string;