我使用此语法删除自定义分类法存档列表上的摘录,效果非常好:
add_filter( \'excerpt_length\',\'remove_excerpt\', 1000 );
function remove_excerpt( $length )
{
if ( is_tax(\'country\') ) {
return 0;
}
return $length;
}
然而,我还有另外两个自定义分类。。。。
这样加上另外两个是正确的吗?
add_filter( \'excerpt_length\',\'remove_excerpt\', 1000 );
function remove_excerpt( $length )
{
if ( is_tax(\'country\') ) {
return 0;
}
elseif ( is_tax(\'us_state\') ) {
return 0;
}
elseif ( is_tax(\'cities\') ) {
return 0;
}
return $length;
}
我希望这三个结果都一样。。。
只是想确保我做得正确。
谢谢