Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Animesh Gaurav (a11n)

    (@bizanimesh)

    Hi there,

    Could you please try:

    https://www.example.com/?feed=job_feed&job_type=featured

    If that doesn’t work, you may want to install a plugin like Woody code snippets and add this snippet code:

    function add_featured_job_flag( $query_args) {
      $query_args[ 'meta_key' ] = '_featured';
      $query_args[ 'meta_value' ] = 1;
      return $query_args;
    }
    
    if ( 'featured' == $_GET['job_type'] ) {
      add_filter( 'job_feed_args', 'add_featured_job_flag' );
    }

    If this doesn’t work, I’d suggest checking with your developer, as we can only provide these codes for informational purposes and can’t assist with troubleshooting those.

    Thread Starter Rampling

    (@rampling)

    Thank you, that works perfectly.

    Much appreciated.

    Plugin Support Animesh Gaurav (a11n)

    (@bizanimesh)

    Hi there,

    Glat it worked! I’m marking this topic as resolved.

    But If you have any further questions or need some more help, you’re welcome to reply here or open another thread. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘RSS feed for Featured Jobs only’ is closed to new replies.