Archived topic
Add featured image on custom post type
4 replies · Started by onalti on September 24, 2019
Customizer> Layout> Blog. I turned it off for blog pages, and it was passive on special post types. Is there a filter for me to activate in special shipment types?
Hi there,
you can use the Blog Options filter:
https://docs.generatepress.com/article/option_generate_blog_settings/
Thank you. Can apply well for special shipment types.
add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' );
function lh_custom_search_results_page_settings( $options ) {
if ( is_post_type_archive( 'custom_category' ) ) {
$options['single_post_image'] = true;
$options['single_post_image_position'] = 'below-title';
}
return $options;
}
thank you. My problem is solved.
You're welcome