我需要创建具有多种功能的wordpress短信代码供客户选择,之后我想与视觉作曲家整合。
提前致谢。
答案 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');
?>
在此之后我映射了短代码
在Visual Composer设置中[btnreadmore link = http://google.com align = right text = More]
。映射完成后,Visual Compser会在“添加元素”中添加一个新选项卡。可以在Visual Composer列中插入的屏幕。