Most voted "taxonomy" questions
21 questions
Sort by count of
-
5
votes1
answer551
viewsList custom post type of various taxonomies
I used that code: <ul> <?php $args = array( 'post_type' => 'integrante', 'orderby' => 'title', 'order' => 'asc', 'lang' => 'pt', 'tax_query' => array( 'relation' => 'AND',…
-
1
votes1
answer493
viewsWhy does my Taxonomy in Wordpress not work on a hierarchical level?
My problem is the following, record a custom post type and a custom taxonomy for the same, both with hierarchy enabled. Record custom type 'categories' within taxonomy, following the style Father…
-
1
votes1
answer100
viewsSQL only in custom Wordpress post for tag conversion
Let’s say a site using Wordpress has half the posts of the default type, and the other half using a Custom Post Type "review" http://codex.wordpress.org/pt-br:Tipos_de_Posts_Personalizados. But this…
-
1
votes1
answer97
viewsCustom Taxonomy inside another Custom Taxonomy in Wordpress
I need to create the following hierarchy within the Wordpress admin: Category -> Product Line -> Product A product belongs to a line which in turn belongs to a category. I thought I’d create a…
-
1
votes1
answer308
viewsWordpress - Custom Post Type and New Taxonomy - Display records from selected category only
I created a custom post type called "downloads" and created categories for these using register_taxonomy() called downloads-Category. In WP-Admin, I managed to register all my files and separate…
-
1
votes1
answer131
viewsCatch Taxonomy Name According to Slug - Wordpress
I was wondering if you could catch the name of taxonomy(wordpress) according to the Slug that is in the url(http://localhost/tag/Weg/? taxonomy=command-and-protection). Information of the Taxonomy:…
-
1
votes1
answer297
viewsAdd custom wordpress taxonomy field
I am giving maintenance on a Wordpress site on which there is a page called "Services" and so there is also the "Service Category", on a certain page of the site, these services are listed within…
-
1
votes0
answers692
viewsDisplay the terms of a custom post Taxonomy
am with the following problem in creating a wordpress theme. I created CPT called child and for it I created a tag taxonomy. Everything is working normally but when I call this CPT post in…
-
1
votes1
answer577
viewsList Categories and Subcategories on the Site - Wordpress
I am currently with a site project, and I have a list of Wordpress taxonomies, so: -- Engines (parent) --- Single Phase Motors (son) --- Three Phase Engines (son) I wanted to know how to create an…
-
0
votes1
answer786
viewsView children (Children) just by clicking on parent term
I have a sidebar and need to list the taxonomy terms 'Category'. So far so good, what I can’t do is: By clicking on a term, you should list his children’s terms in a submenu containing a link to the…
-
0
votes1
answer170
viewsCustom taxonomy in Wordpress
I have a record of posts, which is actually a medical record. My question is how to direct to a file taxonomy.php specific as I have two files with their respective selects in the bank. In one I…
-
0
votes1
answer95
viewsDisplay of Wordpress pages
I’m in need of a help here about pages and display with Wordpress. I have to make a website for a service provider, and that company has two branches in different cities, and each city has its…
-
0
votes0
answers70
viewsErroneous paging count in wordpress
When the Slug stored in var $type is for example 'pizzas-salgadas' the pagination rolls normally, now when this Slug changes, the pagination appears even without the need to appear, with several…
-
0
votes2
answers476
viewsFilter element from taxonomy in wordpress
In the article page (single.php) of my theme I have the following code that filters a div making it appear only in pages of a certain category: <?php $categoria_post =…
-
0
votes1
answer233
viewsPost types by taxonomy
I’m doing it this way and yet, it’s not pulling taxonomy that I want. It’s pulling standard WP posts and not mine specifically. My post type is the 'post_type' => 'posts_blog', as below and the…
-
0
votes1
answer57
viewsShow terms of a taxonomy randomly
I am displaying all categories with their respective images, according to the code below: <?php categorias = apply_filters('taxonomy-images-get-terms', '', array( 'taxonomy' => 'category') );…
-
0
votes1
answer73
viewsSearch Filter showing only 10 results
Hello, I am developing a website in Wordpress, with a template purchased and I am with a difficulty that, I believe be a doubt on Wordpress and not on the theme. The Website shows several…
-
0
votes1
answer106
viewstaxonomy-$taxonomy.php does not work
Good afternoon. I am creating a site with more than one Custom Post Type. For example: Custom Post Type "A" has the taxonomy "Types" (type 1 and Tipo2). Custom Post Type "B" has the taxonomy "Years"…
-
0
votes1
answer16
viewsView Taxonomy on the edit page
Hello. I don’t know what happened that I can’t do to taxonomy appear on the posts editing page. I don’t know what’s missing from the code, see: <?php function registraIdiomas(){…
-
0
votes1
answer23
viewsComparison of categories in ACF AJAX repeater fields
Talk personal, all right? I hope so! I’m having a hard time solving the following problem. I have a Post_type Called prize and a taxonomy called winners, in the post I have a repeater field where…
-
-1
votes1
answer82
viewsHow to list categories and subcategories in select?
Personal I have 2 custom taxonomies in a post, are they, City and States. But I only want to use the taxonomy Cities and every city put her being Ascendant of their respective State. Once this is…