Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Query_posts with hp_listing_attribute

// WP_Query arguments
$args = array(
	'post_type'              => array( 'hp_listing' ),
	'post_status'            => array( 'publish' ),
	'meta_query'             => array(
		array(
			'key'     => 'hp_geriatr',
			'value'   => 'да',
			'compare' => 'LIKE',
		),
	),
);

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