• I have create the following

    function create_country_taxonomy() {
    	register_taxonomy(
    		'country',
    		'post',
    		array(
    			'label' => 'Country',
    			'hierarchical' => false,
    		)
    	);
    }

    How can I make searchable the Country taxonomy?

The topic ‘search by taxonomy’ is closed to new replies.