WordPress中添加代码的方式很多,以前也有介绍过。参见
代码实现WordPress 在文章内容的随机段落中间插入广告
本代码实现在指定段落添加广告,将下面的代码添加到当前主题的 functions.php
- /**
- * WordPress 在文章内容中间插入广告
- * https://www.wpdaxue.com/insert-ads-within-post-content-in-wordpress.html
- */
- //在文章内容的第二段后面插入广告
- add_filter( 'the_content', 'prefix_insert_post_ads' );
- function prefix_insert_post_ads( $content ) {
- $ad_code = '<div>添加你的广告代码</div>';
- if ( is_single() && ! is_admin() ) {
- // 修改 2 这个段落数
- return prefix_insert_after_paragraph( $ad_code, 2, $content );
- }
- return $content;
- }
- // 插入广告所需的功能代码
- 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 );
- }
( $ad_code, 2, $content )为第二段落后添加的广告,可根据情况修改,比如在第三段落添加则为:
( $ad_code, 3, $content )