Change header on pages displaying taxonomy items

You need to change the code that currently displays that header, so that it doesn’t display the default title when it’s on this taxonomy. You can detect if you are on a taxonomy page with the is_tax() function, and then you could do something like this: $term_array = get_term_by( ‘slug’, get_query_var( ‘term’ ), ‘materia’ ); … Read more

Setup database structure with books, authors, languages etc. for publishing house [closed]

You can always create your own custom database tables and access them with or without the WordPress wrapper. However in this case, it sounds like you want Custom Post Types I think you may have a bit of a misunderstanding as to what a “post” or “custom post type” is in WordPress. Though 100% honestly, … Read more

Taxonomy linked to pages

Both your double and single quotes are not the correct kind in this block of code. Also, the taxonomy name is ‘colecciones’ with a small ‘c’, but you used ‘Coleccions’ with a capital ‘C’. The match is case sensitive. Thus your function code should be: function show_product_colecciones(){ $collections = wp_get_post_terms( get_the_ID(), ‘colecciones’ ); $collection = … Read more

Advanced theme training?

The best resources available are: The Codex – Most of the functions and tools you’ll want to use are documented there, as well as examples and code snippets that you can use in your own system. PHPXref – There are a lot of different systems out there, I just linked to the first one I … Read more