Not working when adding posts after content
-
I have a template with the following code to add posts from a category after the content on a page. The posts are listed but not using the grid. What am I missing?
add_action('genesis_after_loop', 'buyer_grid_loop_helper'); function buyer_grid_loop_helper() { $args = array( 'category_name' => 'home-buyer', ); genesis_custom_loop( $args ); } genesis();
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Not working when adding posts after content’ is closed to new replies.