点我领取-糖果博客

WordPress在一定字数之后添加自定义内容

使用下面的代码,可以方便地在WordPress文章一定字数之后添加自定义内容。

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

add_filter('the_content', 'insert_content_after_chars_words');
function insert_content_after_chars_words($content) {
	// 当超过1000个字符时执行此操作
	$enable_length = 1500;
	// 在500个字符后的第一个</p>之后插入
	$after_character = 1500;
	if ( is_single() && strlen( $content ) > $enable_length ) {
		$before_content = substr( $content, 0, $after_character );
		$after_content = substr($content, $after_character );
		$after_content = explode( '</p>', $after_content );
		$text = '文字内容';
		array_splice( $after_content, 1, 0, $text );
		$after_content = implode( '</p>', $after_content );
		return $before_content . $after_content;
	} else {
		return $content;
	}
}

[ri-post id=”4302″ thumb=”left”]

友情赞助

如果你喜欢我的内容,可以赞助我哦!你的一点点心意,是我不断前进的动力!
© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容