document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2. Show only posts from category 123
  3. Locate the category number within the URL of your category page
  4. */
  5. function my_home_category( $query ) {
  6.     if ( $query->is_home() && $query->is_main_query() ) {
  7.         $query->set( \'cat\', \'123\' );
  8.     }
  9. }
  10. add_action( \'pre_get_posts\', \'my_home_category\' );
');