Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

liste des jobs sponso linkedin

// WP_Query arguments
$args = array(
	'post_type'              => array( 'job_listing' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => true,
	'posts_per_page'         => '11',
	'order'                  => 'DESC',
	'orderby'                => 'id',
	'meta_query'             => array(
		array(
			'key'     => 'sponsoring_linkedin',
			'value'   => '1',
			'compare' => '=',
			'type'    => 'BINARY',
		),
	),
);

// The Query
$query = new WP_Query( $args );