網(wǎng)上搜索相關代碼,都是只能加到正文的末尾,如果你想加到頂端可以用下面代碼,將代碼添加到當前主題functions.php模板的最后,并修改相應的內容。
function zm_content_insert( $return = 0 ) {// 插入的內容 $str.= "<div class='same'>"; $str.= "<h4>標題</h4>"; $str.= "<p>關注:<a rel="external nofollow noopener" target='_blank'>愛尚教程資源網(wǎng)</a></p>"; $str.= "</div>"; if ($return) { return $str; } else { echo $str; } } function zm_content_filter($content) { if(!is_feed() && !is_home() && is_singular() && is_main_query()) { $content .= zm_content_insert(0);// 0在正文上面 //$content .= zm_content_insert(1);//1在正文下面 } return $content; } add_filter('the_content','zm_content_filter');
注:本文提供的方法可以方便地讓你選擇是顯示在正文頂端或者末尾,也可以同時顯示。文章源自網(wǎng)吧系統(tǒng)維護-http://www.ykday.cn/8923.html 文章源自網(wǎng)吧系統(tǒng)維護-http://www.ykday.cn/8923.html
版權聲明:文章圖片資源來源于網(wǎng)絡,如有侵權,請留言刪除!!!
評論