do_shortcode无法处理我的index.php

时间:2015-02-19 08:31:22

标签: php wordpress shortcode

我在我的functions.php上注册了一个短代码

function offer_intro_shortcode ($atts, $content=null) {

    $offer = shortcode_atts( array (
        'title' => '',
        'text' => '',
    ), $atts );

    extract ($offer);
    return '<div class="center gap">
            <h3>'.$title.'</h3>
            <p class="lead">'.$text.'</p>
            </div>';
}
add_shortcode ('offer', 'offer_intro_shortcode');

然后我写在wordpress帖子上:

[offer title='What We Offer' text='Look at some of the recent projects we have completed for our valuble clients']

然后我在我的index.php上查询这个短代码,如do_shortcode(&#39; [offer]&#39;)

但它不起作用

2 个答案:

答案 0 :(得分:0)

试试这个。

echo do_shortcode("[offer title='What We Offer' text='Look at some of the recent projects we have completed for our valuble clients']");

检查这是否有效。

答案 1 :(得分:0)

在$ atts之后添加另一个参数,即短代码,这样就可以了。

 $offer = shortcode_atts( array (
        'title' => '',
        'text' => '',
    ), $atts,'offer' );