你不会说你是如何建立不同的adsense的。我假设在模板中有一个文件夹,名为\'authors-ads\'
, 其中有一些php文件,以authors ids, e、 g.:
/authors-ads/author-1.php
/authors-ads/author-12.php
等等。
之后在你的single.php
或任何用于显示帖子的模板
使用
global $post;
get_template_part(\'authors-ads/author\', $post->post_author );
这样,与文章作者相关的文件就会包含在页面中。
当然,在那个文件中放了与作者有关的广告。