WordPress 技巧:刪除列表頁的 Shortcode

.. 有時候我們希望保持首頁和其他列表頁儘可能的簡單,比如不輸出 Shortcode:

  /*  Plugin Name: 刪除列表頁的 Shortcode  Plugin URI:  http://blog.wpjam.com/m/remove-shortcode-from-archive/  Description: 刪除首頁和其他列表頁的 Shortcode。  Version: 0.1  Author: Denis  Author URI: http://blog.wpjam.com/  */  function wpjam_remove_shortcode_from_archive($content) {  	if ( !is_singular() ) {  		$content = strip_shortcodes( $content );  	}  	return $content;  }  add_filter('the_content', 'wpjam_remove_shortcode_from_archive');  

將上面的保存為一個插件,上傳激活即可。

更多 WordPress Shortcode 介紹和使用技巧:

本站長期承接 WordPress 項目,詳情請加 QQ:11497107 或者 Email:denis@wpjam.com
如有 WordPress 問題,請到 WPJAM 問答提問!QQ 上不方便解答!


想在手機閱讀更多Wordpress資訊?下載【香港矽谷】Android應用
分享到Facebook
技術平台: Nasthon Systems