目前想要把wordpress的相关推荐放到上面一点,所以问了些群友和找了些资料,成功的把相关推荐移动了,下面就以前来看看吧。
在dux主题下找到single.php,下面的这段代码是相关推荐的。
?php if( _hui('post_related_s') ){ _moloader('mo_posts_related', false); mo_posts_related(_hui('related_title'), _hui('post_related_n')); } ?>
这段代码是dux后台广告位
<?php if (_hui('ads_post_footer_s')) { echo '<div class="asb-post-footer"><b>AD:</b><strong>【' . _hui('ads_post_footer_pretitle') . '】</strong><a'.(_hui('ads_post_footer_link_blank')?' target="_blank"':'').' href="'%20.%20_hui('ads_post_footer_link')%20.%20'">' . _hui('ads_post_footer_title') . '</a></div>'; } ?>
将相关推荐的代码剪切到广告位后面即可实现更换wordpress相关推荐文章位置。
此代码是文章分页:
<?php wp_link_pages('link_before=<span>&link_after=</span>&before=<div class="article-paging">&after=</div>&next_or_number=number'); ?>
此段代码显示文章正文下:
<?php _the_ads($name='ads_post_02', $class='asb-post asb-post-02') ?> <?php _the_ads($name='ads_post_03', $class='asb-post asb-post-03') ?>