我正在尝试更改VC在Wordpress中使用的服务摘录/描述的长度
我已经使用了这个功能
function custom_excerpt_length( $length ) {
return 100;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
然而,这只能增加我所知道的帖子长度?我不确定Services excerpt与VC一起使用的功能
确切的类是sc_services_item_description,但我不确定从哪里调用
答案 0 :(得分: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');
希望,它可能对你有用。谢谢。