php CTA按钮短代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php CTA按钮短代码相关的知识,希望对你有一定的参考价值。

// CTA Button Shortcode
function cta_button($atts) {

	extract(
		shortcode_atts([
			'text' => 'Button',
			'url' => '#',
			'align' => 'left',
			'heading' => ''
		], $atts)
	);

	if($heading) {
		$heading = '<h5>' . $heading . '</h5>';
	}

	return '
		<div class="cta-button-wrap" style="text-align:' . $align . '">
			' . $heading .'
			<a class="button" href="' . $url . '">' . $text  . '</a>
		</div>
	';

}
add_shortcode('button', 'cta_button');

以上是关于php CTA按钮短代码的主要内容,如果未能解决你的问题,请参考以下文章

html 使用此代码在页面底部将两个CTA按钮浮动在一起。

php 按钮短代码和vc附加组件

php 按钮短代码

php 微小的MCE为短代码添加按钮

php 具有自定义属性的按钮的短代码

html 使用此代码在页面底部浮动两个CTA按钮(服务和自定义护理计划)。我通常在我的Local Office / Wh上使用它