如何在wordpress中为投资组合创建短代码?

时间:2015-10-18 11:31:20

标签: wordpress shortcode

我需要创建具有多种功能的wordpress短信代码供客户选择,之后我想与视觉作曲家整合。

提前致谢。

1 个答案:

答案 0 :(得分:0)

虽然非常基础,但我最近以短代码的形式向Visual Composer添加元素块:

<?php
// Shortcode function to insert a 'read more' button in VC
function insert_readmore($atts){
    extract(shortcode_atts(array(
        'link' => '#',
        'text' => 'Read more',
        'align' => 'left'
    ), $atts));

    $readmore = "<p><a href=\"" . $link . "\" class=\"btn readmore " . $align . " \">" . $text . "</a></p>";
    return $readmore;
}

function register_shortcodes() {
    add_shortcode('btnreadmore', 'insert_readmore');
}
add_action( 'init', 'register_shortcodes');
?>

在此之后我映射了短代码

  

[btnreadmore link = http://google.com align = right text = More]

在Visual Composer设置中

。映射完成后,Visual Compser会在“添加元素”中添加一个新选项卡。可以在Visual Composer列中插入的屏幕。