text WordPress Shortcode - Spacer

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text WordPress Shortcode - Spacer相关的知识,希望对你有一定的参考价值。

 /**
 * Spacer
 *
 * @since 1.3.0
 * Use the shortcode: [spacer class="css-class-name" height="30px"]
 * Note: Since the space size uses an inline style your css class may have to use an !important 
 */

function cmms_spacer_shortcode( $atts ) {
	// Attributes
	extract (shortcode_atts(
		array(
			'class' => '',
			'height' => '30px',
		),
		$atts));

		return '<div class="'.$class.'" style="height: '.$height.'"></div>';
	
}
add_shortcode( 'spacer', 'cmms_spacer_shortcode' );

以上是关于text WordPress Shortcode - Spacer的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress Shortcode返回当前页面标题。

markdown Shortcode - 现代部落的活动日历 - WordPress插件

php Shortcode显示WordPress站点上远程站点的快照。

在WordPress中使用add_shortcode()在主页中创建内容部分

Wordpress文本小部件嵌入视频和图像

php 在the_content()之前或之后添加HTML或Shortcode - WordPress mu-plugin