Site logo

Archived topic

Add featured image on custom post type

4 replies · Started by onalti on September 24, 2019

Viewing posts 1–5 of 5

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?

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

This archived topic is closed to new replies.