2017-08-16 62 views
0

我試圖改變WordPress的提高服務說明/摘錄長度WordPress的VC

使用VC服務摘錄/描述的長度我用的功能

function custom_excerpt_length($length) { 
return 100; 
} 
add_filter('excerpt_length', 'custom_excerpt_length', 999); 

只然而,這允許從我所知道的增加帖子長度?我不能確定的是服務與摘錄VC

使用的確切類是sc_services_item_description但我不知道在哪裏它是從

回答

0

叫你可以試試下面的代碼應用摘錄自定義的限制功能帖子類型。

// CHANGE EXCERPT LENGTH FOR DIFFERENT POST TYPES 

    function isacustom_excerpt_length($length) { 
    global $post; 
    if ($post->post_type == 'post') 
    return 32; 
    else if ($post->post_type == 'services') 
    return 100; 
    else 
    return 80; 
    } 
    add_filter('excerpt_length', 'isacustom_excerpt_length'); 

希望,它可能適合你。謝謝。