WordPress正文頂端或者末尾插入固定內(nèi)容

admin wordpress評論469字數(shù) 604閱讀模式
摘要

有時候需要WordPress每篇文章正文頂端或者末尾插入固定的內(nèi)容,比如加個廣告、版權(quán)聲明之類的,你可以直接打開正文模板添加,不過還是利用WordPress函數(shù)模板functions.php添加代碼比較方便。

WordPress正文頂端或者末尾插入固定內(nèi)容
網(wǎng)上搜索相關(guān)代碼,都是只能加到正文的末尾,如果你想加到頂端可以用下面代碼,將代碼添加到當(dāng)前主題functions.php模板的最后,并修改相應(yīng)的內(nèi)容。

function zm_content_insert( $return = 0 ) {// 插入的內(nèi)容
 	$str.= "<div class='same'>";
 	$str.= "<h4>標(biāo)題</h4>";
 	$str.= "<p>關(guān)注:<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');

注:本文提供的方法可以方便地讓你選擇是顯示在正文頂端或者末尾,也可以同時顯示。

版權(quán)聲明:文章圖片資源來源于網(wǎng)絡(luò),如有侵權(quán),請留言刪除!!!
廣告也精彩
admin
  • 本文由 發(fā)表于 2022年11月6日 16:03:01
  • 轉(zhuǎn)載請務(wù)必保留本文鏈接:http://yudch.cn/8923.html
匿名

發(fā)表評論

匿名網(wǎng)友 填寫信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: