admin管理员组文章数量:1277509
I'm adding a custom column named Excerpt with Codepress Admin Columns, and would like to know specifically when the Excerpt has not been filled out. Instead WordPress shows post content automatically, if the excerpt is missing. This is also testable by switching on the "Excerpt View" from post list screen.
Implementing default_excerpt hook doesn't seem to do anything for admin side. Grepping through codebase isn't getting me anywhere in a reasonable amount of time so I'm asking for some help figuring this out.
I'm adding a custom column named Excerpt with Codepress Admin Columns, and would like to know specifically when the Excerpt has not been filled out. Instead WordPress shows post content automatically, if the excerpt is missing. This is also testable by switching on the "Excerpt View" from post list screen.
Implementing default_excerpt hook doesn't seem to do anything for admin side. Grepping through codebase isn't getting me anywhere in a reasonable amount of time so I'm asking for some help figuring this out.
Share Improve this question asked Nov 2, 2012 at 14:42 lkraavlkraav 7399 silver badges21 bronze badges 3 |3 Answers
Reset to default 4Just illustrating this in full effect here with the filters and functions for both the adding of custom column and testing for excerpt existence.
Note, I've purposely ripped the guts out of has_excerpt
to show you in effect what is occurring under the hood. You can use !has_excerpt
in its place.
add_filter('the_excerpt', 'no_excerpt');
add_filter('manage_posts_columns' , 'excerpt_column');
add_action( 'manage_posts_custom_column' , 'excerpt_column_content', 10, 2 );
function no_excerpt(){
//replace empty( $post->post_excerpt ) with !has_excerpt if you wish
if ( is_admin() && empty( $post->post_excerpt ) )
return 'not here buddy!';
}
function excerpt_column($columns) {
return array_merge( $columns, array('excerpt_column' => __('Excerpt')) );
}
function excerpt_column_content( $column, $post_id ) {
the_excerpt();
}
This does not take into account any efficiencies that can be had by arranging and or calling your functions by different means, this is only an example. In my test case,
"not here buddy!"
...is what will be returned when no excerpt is present. Change to suit your needs.
There is has_excerpt()
function that checks for manual excerpt.
Depending on your needs you can either build column output using it for logic or hook into the_excerpt
and blank return if current post doesn't have manual excerpt.
you can disable automatic excerpt generation from the_content via following filter hook. i personally needed it for rest api purposes and couldn't use has_excerpt()
in my template.
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
本文标签: How to disable automatic excerpt generation *in admin*
版权声明:本文标题:How to disable automatic excerpt generation *in admin*? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741205664a2358098.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
the_excerpt
below. – Adam Commented Nov 2, 2012 at 15:56