display on homepage
-
Hello and excuse me for my english
I use the theme, and on my homepage, I use a static page (with content) with the display of latest posts (homepage_panes) below this content.
I’d like to put the display of the latest articles over the content but I can not find a way to make the change.
Can you help me ?
Thank you very much
John
Go to WP-Admin –> Settings –> Reading Settings and select Your latest posts in Front page displays
Thank you,
It was not exactly what I wanted to do, but I’ll opt for your solution
Okay, can you explain what you want to get?
Hello,
I wanted to put the panel home page (latest articles) above the content of my static home page (instead of the slideshow)
Thank you
Admin
Add this code to your child theme’s
functions.phpfile:function graphene_move_homepage_panes(){
remove_action( 'graphene_bottom_content', 'graphene_display_homepage_panes' );
add_action( 'graphene_top_content', 'graphene_display_homepage_panes' );
}
add_action( 'template_redirect', 'graphene_move_homepage_panes' );Thank you,
I never found it alone
John
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
