mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
12 lines
332 B
Text
12 lines
332 B
Text
add_filter( 'get_the_excerpt', function ( $excerpt, $post ) {
|
|
if ( ! empty( $excerpt ) ) {
|
|
return $excerpt;
|
|
}
|
|
|
|
// On a specific post type, use an ACF field value as the excerpt.
|
|
if ( $post->post_type === 'my_custom_post_type' ) {
|
|
$excerpt = get_field( 'product_description', $post->ID );
|
|
}
|
|
|
|
return $excerpt;
|
|
}, 10, 2 );
|