Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jholcombkw

    (@jholcombkw)

    Home page loop is

    <?php
    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'child_grid_loop_helper' );
    /** Add support for Genesis Grid Loop **/
    function child_grid_loop_helper() {
    
    	if ( function_exists( 'genesis_grid_loop' ) ) {
    		remove_action( 'genesis_before_post_content', 'generate_post_image', 5 );
    		genesis_grid_loop( array(
    			'cat'                   => 1,
    			'features'              => 1,
    			'feature_content_limit' => 0,
    			'grid_image_size'       => '',
    			'grid_content_limit'    => 0,
    			'more'                  => __('Continue','inspyr'),
    
    		) );
    	} else {
    		genesis_standard_loop();
    	}
    
    }
    
    genesis();

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Plugin Support angelo_nwl

    (@angelo_nwl)

    here’s another thread which may help you with this – http://wordpress.org/support/topic/events-manager-using-post-categories?replies=8

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Adding Post Categories to Events’ is closed to new replies.