• Resolved sellis09

    (@sellis09)


    Hello, is there a way to generate a RSS feed for jobs posted to the job board? Thank you

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mykyta Synelnikov

    (@nsinelnikov)

    Hi @sellis09

    You could use this code snippet and link like {siteurl}/feed/?post_type=jb_job

    function myfeed_request( $qv ) {
    	if ( isset( $qv['feed'] ) && isset( $_GET['post_type'] ) && 'jb_job' == $_GET['post_type'] ) {
    		$qv['post_type'] = 'jb-job';
    	}
    
    	return $qv;
    }
    add_filter( 'request', 'myfeed_request', 10, 1 );

    Let me know how it works,
    Best Regards

    Plugin Author Mykyta Synelnikov

    (@nsinelnikov)

    Hi @sellis09

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘RSS feed’ is closed to new replies.