2017-08-16 96 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'); 

希望,它可能适合你。谢谢。