Top Blog Posts in Homepage

Hello!

Is there any way to link a few of my top blogs to the bottom of my homepage? Ideally, I would like to have a headline that says “Top Posts” or something similar and then have 2 or 3 images and titles, each linking to a certain blog. How would I be able to do this?

Thanks so much!
-Nadia

Hi There,

It could be achieved with a Gloal Block. You can add the recent posts and custom headline elements to your global block.

After that add the following code under functions.php file locates in your child theme:

add_action( 'x_after_view_global__index', 'x_print_bottom_blog' );
function x_print_bottom_blog(){
	echo do_shortcode( '[cs_gb id=1500]' );
}

The 1500 number should be the global block ID.

Hope it helps :slight_smile:

I got the top posts to work, thank you so much!

I hope I did the coding part right :slight_smile:

Thanks again!
-Nadia

We are delighted to assist you with this.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.