1

我在我的 WordPress 上安装了这个插件: http ://wordpress.org/plugins/put/

我正在尝试制作一个在我自己的插件中使用 UI Tabs 插件的插件。

到目前为止我的插件代码:

function load_jquery(){
    echo '<link rel=\'stylesheet\' id=\'jquery-ui-tabs-css\'  href=\'http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/smoothness/jquery-ui.css?ver=1.9.2\' type=\'text/css\' media=\'all\' />';
}

add_action('wp_head','load_jquery');

function print_tabs(){
    echo do_shortcode('[tab name="Tab"]-[/tab]');
    echo do_shortcode('[end_tabset]');
}

add_shortcode('print_tabs', 'print_tabs');

现在,如果我[print_tabs]在新页面中使用简码,它应该如下所示:http: //img835.imageshack.us/img835/4905/workingp.png

但它不起作用,它看起来像这样:http: //imageshack.us/a/img62/9772/notworkingm.png

这里可能是什么问题?

4

1 回答 1

0

从我在 Post UI Tabs 插件的 put.php 中看到的问题是,短代码仅在名为“on_the_content”的函数中的“the_content”过滤器中添加。

add_filter( 'the_content',        array( $this, 'on_the_content' ), 7 ); // Priority 7 - before wpautop

(put.php 的第 96 行)

这个函数看起来像:

    public function on_the_content( $content ) {

    $this->has_tabs = (bool) apply_filters( 'put_decide_has_tabs', $this->has_tabs );

    if( !$this->has_tabs )
        return $content;

    global $shortcode_tags;

    // Backup current registered shortcodes and clear them all out
    $orig_shortcode_tags = $shortcode_tags;
    $shortcode_tags = array();

    add_shortcode( 'tab',        array( $this, 'on_tab_shortcode' ) );
    add_shortcode( 'end_tabset', array( $this, 'on_tab_end_shortcode' ) );

    // Do the shortcode(only the tab shortcode is registered at this point)
    $content = do_shortcode( $content );

    // Put the original shortcodes back
    $shortcode_tags = $orig_shortcode_tags;

    return $content;
}

(从 put.php 的第 118 行开始)

因此,考虑到如何通过使用过滤器修改内容来编写此插件,该过滤器又在运行该过滤器时添加短代码,您所看到的可能正在发生,因为当您调用“do_shortcode”时,这些短代码实际上并不存在。

那么回显 do_shortcode 正在做什么,只是咳出文本。

不幸的是,由于 Post UI Tabs 插件的编写方式,您可能无法执行您想要执行的操作。

于 2013-08-28T15:52:59.650 回答