Archived topic
Change order to picture . headline . text
5 replies · Started by Nico on November 2, 2022
Hi There!
Is it possible to arrange the posts in the category view so that the image is displayed first, then the title and then the teaser text?
https://www.hello-world.net/category/marktplatz/
See screenshot here:
https://immarketingforum-my.sharepoint.com/:i:/g/personal/marcuz_hello-world_net/EaD8uETNYK9Mp8yopPI7ZmQBFuLW6n3ooWbua-SAPMrUsg?e=7XA1KM
thnx for helping
best regards
Nick
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 :)