Advertisement
Guest User

Untitled

a guest
May 6th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. add_filter( 'query_vars', 'add_query_vars');
  2. function add_query_vars($vars){
  3. $vars[] = "photos";
  4. return $vars;
  5. }
  6. function photos_add_single-photos_endpoint() {
  7. add_rewrite_endpoint( 'photos', EP_PERMALINK );
  8. }
  9. add_action( 'init', 'photos_add_single-photos_endpoint' );
  10. function project_attachments_template( $single_template ){
  11. global $wp_query;
  12. if ( isset( $wp_query->query_vars['photos'] ) ) {
  13. $single_template = get_stylesheet_directory() . '/single-photos.php';
  14. }
  15. return $single_template;
  16. }
  17. add_filter( 'single_template', 'project_attachments_template' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement