修改短代码atts(),这可能吗?

时间:2013-09-16 12:02:34

标签: php wordpress shortcode posts

我在我的模板functions.php上使用链接短代码,就像这样,

function post_link_shortcode( $atts ) {

    // Attributes
    extract( shortcode_atts(
        array(
            'id' => '',
            'kelime' => '',
        ), $atts )
    );

    // Code
    if ( isset( $id ) ) {
        return '<a target="_blank" rel="nofollow" href="' . $id  . '"> <strong>' .$kelime  . '</strong></a>';
    }

}
add_shortcode( 'link', 'post_link_shortcode' );

用法: [link id =“someurl.com”kelime =“link title”]

我们可以改变这个吗? [link | someurl.com |链接标题]

可能吗?比怎么样?感谢。

0 个答案:

没有答案