在WordPress文章中添加小工具

虽然目前WordPress区块编辑器,可以在正文中添加任意区块,包括区块小工具,但想在所有文章中添加一个固定的…

虽然目前WordPress区块编辑器,可以在正文中添加任意区块,包括区块小工具,但想在所有文章中添加一个固定的内容,每次还是需要手动添加区块,文本分享一段代码,可实现在WordPress文章中添加一个固定的,与正常侧边栏一样的小工具,方便使用。

效果演示

将下面代码添加到当前主题函数模板functions.php中:

展开收缩
// 添加小工具
if ( function_exists('register_sidebar') ) {
	register_sidebar(array(
		'name'          => '正文小工具',
		'id'            => 'inline-content',
		'description'   => '用于在正文中添加小工具',
		'before_widget' => '<aside id="%1$s" class="widget inline-content %2$s">',
		'after_widget'  => '<div class="clear"></div></aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	));
}

// 添加到正文第二个段落下面,修改数字2可调整位置
add_filter( 'the_content', 'insert_content_filter' );
function insert_content_filter( $content ) {
	ob_start();
	$sidebar = dynamic_sidebar('inline-content');
	$new_content = ob_get_clean();
	if ( is_single() && ! is_admin() ) {
		return insert_content( $new_content, 2, $content );
	}
	return $content;
}

// 添加到正文段落中
function insert_content( $new_content, $paragraph_id, $content ) {
	$closing_p = '</p>';
	$paragraphs = explode( $closing_p, $content );
	foreach ($paragraphs as $index => $paragraph) {
		if ( trim( $paragraph ) ) {
			$paragraphs[$index] .= $closing_p;
		}
		if ( $paragraph_id == $index + 1 ) {
			$paragraphs[$index] .= $new_content;
		}
	}
	return implode( '', $paragraphs );
}

之后进入小工具设置页面会发现新增“正文小工具”,与正常侧边栏操作一样添加小工具。

最后可以针对自己的主题适当给这个小工具添加样式:

.inline-content {
	border: 1px solid #666;
}

默认是添加到正文第二个段落下面,可以根据情况调整小工具插入位置,修改数字2,代码有注释。

在WordPress文章中添加小工具

在WordPress文章中添加小工具

类别:WordPress入门

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册