如何在第一段之后仅在创世纪中添加adsense代码?

时间:2017-01-27 17:18:25

标签: wordpress genesis

我想在第一段之后显示adsense广告。我可以用适当的代码指导我。

2 个答案:

答案 0 :(得分:0)

如果您愿意使用插件,可以使用import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; @NgModule({ declarations: [ParentComponent, ChildComponent...], schemas: [CUSTOM_ELEMENTS_SCHEMA] // other stuff .... }) export class YourModuleName{ } https://wordpress.org/plugins/insert-post-ads/

以下是如何设置它的快速教程:http://www.wpbeginner.com/wp-tutorials/how-to-insert-ads-within-your-post-content-in-wordpress/

答案 1 :(得分:0)

您可以使用以下代码以手动方式执行此操作。它非常有效且非常快:

add_filter('the_content', 'prefix_process_content', 20);

function prefix_process_content($content){

$needle = '</p>';

$replace= '</p>your ad code here'; // do not forget the </p>

// Get the position of the first occurrence of $needle
$pos = strpos($content, $needle);

// if found
if ($pos !== false) {
    $newstring = substr_replace($content, $replace, $pos, strlen($needle));
}

return $newstring;

}

我没有测试它,但应该正常工作。如果您需要有关该代码的帮助,请告诉我。

如果您使用的是WordPress,则可以使用类似WP QUADS的插件。它只会增加很少的开销,并且不会增加您网站的加载时间。 https://wordpress.org/plugins/quick-adsense-reloaded/

使用最新的WordPress版本进行维护和测试!

免责声明:我是该插件的作者