Title: Adding Post Categories to Events
Last modified: August 21, 2016

---

# Adding Post Categories to Events

 *  Resolved [jholcombkw](https://wordpress.org/support/users/jholcombkw/)
 * (@jholcombkw)
 * [12 years ago](https://wordpress.org/support/topic/adding-post-categories-to-events/)
 * I am wanting to be able to add Post Categories to my events page (admin side),
   so my homepage can filter the events on to the homepage if I want.
 * [https://wordpress.org/plugins/events-manager/](https://wordpress.org/plugins/events-manager/)

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

 *  Thread Starter [jholcombkw](https://wordpress.org/support/users/jholcombkw/)
 * (@jholcombkw)
 * [12 years ago](https://wordpress.org/support/topic/adding-post-categories-to-events/#post-4863522)
 * 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](https://wordpress.org/support/users/angelo_nwl/)
 * (@angelo_nwl)
 * [12 years ago](https://wordpress.org/support/topic/adding-post-categories-to-events/#post-4863602)
 * here’s another thread which may help you with this – [http://wordpress.org/support/topic/events-manager-using-post-categories?replies=8](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.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=1039078)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

## Tags

 * [homepage](https://wordpress.org/support/topic-tag/homepage/)
 * [post categories](https://wordpress.org/support/topic-tag/post-categories/)

 * 2 replies
 * 2 participants
 * Last reply from: [angelo_nwl](https://wordpress.org/support/users/angelo_nwl/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/adding-post-categories-to-events/#post-4863602)
 * Status: resolved