Custom Search only for my Custom Taxonomy Page – data

You can try modifying your query using pre_get_posts filter. function mod_query() { if ($query->is_main_query() && !is_admin() && is_search()) { // test print queried search terms print_r( $query->query_vars[‘s’] ); $search_terms = $query->query_vars[‘s’]; $search_terms = preg_replace(‘/\s+/’, ‘+’, $search_terms); // test print after replacing spaces with + print_r( $query->query_vars[‘s’] ); // if all going well you can change … Read more

Head Code for Custom Taxonomy

In this case you just need a conditional tag inside of the wp_head action. Placing the following on your functions.php will solve the problem: add_action( ‘wp_head’, ‘q166556_taxonomy_head’ ); function q166556_taxonomy_head(){ // Conditional for Taxonomy archives and posts that have any term from the taxonomy `store` if ( ! has_term( ”, ‘store’ ) && ! is_tax( … Read more

query grandchildren taxonomy terms

Try to use child_of at your second foreach, see the documentation. child_of (integer) Get all descendents of this term. Default is 0. Note: the difference between child_of and parent is that where parent only gets direct children of the parent term (ie: 1 level down), child_of gets all descendants (as many levels as are available) … Read more

Get taxonomy image for Toolset custom taxonomy through Toolset Views Shortcode

The following code is partialy taken from the plugin Taxonomy Images and it’s working: function get_taxonomy_image( $atts ) { $atts = shortcode_atts( array( ‘image_size’ => ‘thumbnail’, ‘id’ => ”, ), $atts ); if( ! empty( $atts[‘id’] ) ) { $term = get_term( $atts[‘id’] ); $related_id = 0; if ( isset( $term->term_taxonomy_id ) ) { $related_id … Read more

Polylang non translatable custom taxonomy

It seems that the plugin Media Library Assistant is deliberately setting its custom taxonomy category_attachment as translatable by means of configuration file wpml-config.xml. Therefore changing the line <taxonomy translate=”1″>attachment_category</taxonomy> to <taxonomy translate=”0″>attachment_category</taxonomy> should do the trick. However I did not try myself because I’m not sure of what happens to existing taxonomy terms having a … Read more

i need to show featured post on custom taxonomy page

Syntax for your meta query seems to be wrong. Just as tax query, it should be array with array for each meta condition. Also use $query for your query functions: $args = array( ‘posts_per_page’ => 3, ‘post_type’ => ‘post’, ‘tax_query’ => array( array( ‘taxonomy’ => ‘city’, ‘field’ => ‘term_id’, ), ), ‘meta_query’ => array( array( … Read more