Site logo

Archived topic

Change order to picture . headline . text

5 replies · Started by Nico on November 2, 2022

Viewing posts 1–6 of 6

Hi Nick,

Do you want the change to apply to the first post too?

Let me know :)

Hey Leo. No, only for the "real" posts.

Hi Nico,

Try this PHP snippet:

add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings',20 );
function lh_custom_search_results_page_settings( $options ) {
    if ( is_category() ) {
	$options['post_image_position'] = 'post-image-above-header';
    }
  
    return $options;
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

Good Morning Ying. THAT`s it!

thnx for this great support. helps us so much.

best regards
Nick

You are welcome Nick :)

This archived topic is closed to new replies.