Hi Support
Only for the home page, in the midle coloumn under “Documenti” I’d like to show only the title for the first post.
And in this page http://www.simpios.eu/dalle-regioni/ I would like to sort by title the posts.
Thanks
Marco
Hey mtnet,
Please try adding this to quick css:
#av-magazine-2 article .av-magazine-content-wrap .av-magazine-content.entry-content{
display:none !important;
}
Best regards,
Jordan Shannon
Perfect Jordan! Thanks
And for the sort order?
Hi,
You are looking to have them in Alphabetical order?
Best regards,
Jordan Shannon
Yes, thanks
And in this page http://www.simpios.eu/dalle-regioni/ I would like to sort by title the posts.
Hi,
To display your posts in alphabetical order, you would have to add this to the functions.php file:
function foo_modify_query_order( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘orderby’, ‘title’ );
$query->set( ‘order’, ‘ASC’ );
}
}
add_action( ‘pre_get_posts’, ‘foo_modify_query_order’ );
Let me know if this works for you, or if you need additional help.
Best regards,
Jordan Shannon