Skip to content

Instantly share code, notes, and snippets.

@roborourke
Last active April 11, 2022 22:47
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save roborourke/5697424 to your computer and use it in GitHub Desktop.
Save roborourke/5697424 to your computer and use it in GitHub Desktop.
add_feed() example for WordPress
<?php
class custom_feed {
public $feed = 'custom-xml';
public function __construct() {
add_action( 'init', array( $this, 'init' ) );
add_filter( 'pre_get_posts', array( $this, 'pre_get_posts' ) );
}
public function init() {
// feed name to access in URL eg. /feed/custom-xml/
add_feed( $this->feed, array( $this, 'xml' ) );
}
public function pre_get_posts( $query ) {
if ( $query->is_main_query() && $query->is_feed( $this->feed ) ) {
// modify query here eg. show all posts
$query->set( 'nopaging', 1 );
}
return $query;
}
public function xml() {
// either output template & loop here or include a template
if ( have_posts() ) : while( have_posts() ) : the_post();
// standard loop functions can be used here
endwhile; endif;
}
}
$custom_feed = new custom_feed();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment