1

我试图让你理解这个功能,作为分叉它为我自己的短代码制作类似功能的前言。我了解如何定义简码及其功能。我也基本上“了解”了原作者在这里所做的事情:从短代码中收集参数并将它们组装成 HTML 标签并返回该标签。似乎参数的顺序并不重要,但它们的名字很重要。

但是,当我使用这段代码时,它似乎不明白哪个参数是哪个。例如,原始文档说要像这样使用简码: [button link="http://google.com" color="black" size="small"]Button Text[/button]

但是当我使用这个简码时,我得到:

<a href="Button Text" title="Array" class="button button-small button " target="_self">
  <span>Array</span>
</a>

这是我的PHP:

if( ! function_exists( 'make_button' ) ) {
function make_button( $text, $url, $color = 'default', $target = '_self', $size = 'small', $classes = null, $title = null ) {
    if( $target == 'lightbox' ) {
        $lightbox = ' rel="lightbox"';
        $target = null;
    } else {
        $lightbox = null;
        $target = ' target="'.$target.'"';
    }
    if( ! $title )
        $title = $text;
    $output = '<a href="'.$url.'" title="'.$title.'" class="button button-'.$size.' '.$color.' '.$classes.'"'.$target.$lightbox.'>';
    $output .= '<span>'.$text.'</span>';
    $output .= '</a>';
    return $output;
}
}


add_shortcode( 'button', 'make_button' );
4

2 回答 2

0

简码正在明确寻找$text.

[button url="http://google.com" color="black" size="small" text="Button Text"]

通常$content,根据Shortcode API ,使用打开/关闭简码时设置的变量是。另一个解决方法是将短代码更改为查找$content而不是$text.

于 2013-08-19T14:22:02.090 回答
0

请参阅简码 API的文档,其中明确指出将三个参数传递给简码回调函数:

  • $atts - 属性的关联数组,如果没有给出属性,则为空字符串
  • $content - 封闭的内容(如果短代码以其封闭形式使用)
  • $tag - 简码标签,用于共享回调函数

所以函数定义应该如下所示:

function make_button( $atts, $content, $tag ) {
    // use print_r to examine attributes
    print_r($atts);
}
于 2013-08-19T14:31:10.957 回答