php WordPress中的Werbung nach dem x。 Absatz

Posted

tags:

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

<?php
/**
 * Werbeblock nach dem zweiten Absatz einfuegen
 * 
 */ 
add_filter( 'the_content', 'tb_insert_post_ads' );
function tb_insert_post_ads( $content ) {
	
	$ad_code = 'Hier kommt der Werbe-Code hinein. Entweder statische Werbung oder auch Google Adsense.';
	if ( is_single() && ! is_admin() ) {
        // Die Zahl vor Content bestimmt, wo der Code erscheint. Hier nach dem zweiten Absatz eines Artikels.
		return tb_insert_after_paragraph( $ad_code, 2, $content );
	}
	
	return $content;
}
 
// Parent Function that makes the magic happen
 
function tb_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中的Werbung nach dem x。 Absatz的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress:WordPress页脚中的动态版权日期

PHP 中的 SQL 查询(WordPress)

Wordpress“插入-php”:文件中的php代码未执行

Wordpress 4.0 options.php 中的 403 错误

Wordpress主题文件夹中的functions.php作用说明

PHP Wordpress,替换默认的WordPress“W”仪表板中的徽标