Wordpress添加按钮链接

时间:2017-02-21 13:55:24

标签: php html css wordpress button

我有以下代码,而正常href无法添加指向该按钮的链接。有什么想法吗?

<p style="text-align: center;">
[
 service pattern = "boxpattern-1"
 bgcolor         = "#ffffff"
 icon            = "http://www.aquaflowright.com/wp-content/uploads/2017/01/cogwheel.png"
 title           = "Services"
 button          = "Learn More"
]Surveys, Testing, Installation, Repair, Maintenance, Notices, and Revenue Assurance[/service]</p>

1 个答案:

答案 0 :(得分:0)

如果这在代码中,请使用do_shortcode():

<?php echo do_shortcode('[service pattern="boxpattern-1" bgcolor="#ffffff" icon="http://www.aquaflowright.com/wp-content/uploads/2017/01/cogwheel.png" title="Services" button="Learn More" ]'); ?>
相关问题