2012-02-28 55 views
0

我有一個網站,其中的簡碼出現在網站的移動版本。我想刪除它們。當我添加下面的代碼時,它會刪除短代碼以及文本。我想要一種簡單地忽略短代碼並離開文本的方式。wordpress移動主題刪除簡碼

例如:「[dropcarp2] G [/ dropcap2] o並喝一杯」應該出現爲「去喝一杯」,但在移動設備上顯示爲「o並喝一杯」(即所有文字之間的短碼被刪除)。

任何人都可以幫忙嗎?

我一直在移動主題的functions.php並添加以下代碼行:

function my_shortcode_handler($atts, $content=null, $code="") 
{ 
    return ''; 
} 

//override the 'dropcap2' shortcode 
add_shortcode('dropcap2', '__return_false'); 
add_shortcode('two_thirds', '__return_false'); 
add_shortcode('one_third', '__return_false'); 
add_shortcode('divider_1', '__return_false'); 
add_shortcode('services', '__return_false'); 
add_shortcode('one_third_last', '__return_false'); 

回答

0

您可能需要過濾「the_content」,並從那裏去除所有的簡碼:

實例:

add_filter('the_content', 'str_replace_shortcode', 1); 
function str_replace_shortcode($content) { 
    $content = str_replace(
     array('[dropcarp2]', '[/dropcarp2]'), // Put everything in the array 
     '', $content); 

    return $content; 
} 

試試看