php 在一定数量的段落之后在WordPress中插入内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在一定数量的段落之后在WordPress中插入内容相关的知识,希望对你有一定的参考价值。
<?php
//Insert ads after second paragraph of single post content.
add_filter( 'the_content', 'prefix_insert_post_ads' );
function prefix_insert_post_ads( $content ) {
$ad_code = '<div>Ads code goes here</div>';
if ( is_single() && ! is_admin() ) {
return prefix_insert_after_paragraph( $ad_code, 2, $content );
}
return $content;
}
// Parent Function that makes the magic happen
function prefix_insert_after_paragraph( $insertion, $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] .= $insertion;
}
}
return implode( '', $paragraphs );
}
以上是关于php 在一定数量的段落之后在WordPress中插入内容的主要内容,如果未能解决你的问题,请参考以下文章
PHP 阻止WordPress在段落标记中包装图像
php wordpress:段落菜单更改
从WordPress小部件获取数据以修改帖子内容
php 从WordPress添加或删除自动段落中断
分页段落-每页显示一定数量的段落
PHP 在Wordpress主页上显示的帖子数量不同于其他页面