I will sell physical products (mostly used but also new) such as movies, music, games, magazines and different merchandise.
How should I solve it with all genres and media types in the first place?
(And I also want the customers to be able to sort by year etc.)
For example, should the media types/formats be categories, and all genres as tags? And should I add “year” as an attribute?
How would you have done?
(I would prefer not to have to install any plugin(s) to accomplish this.)
Thanks in advance!
]]>i want to ask if there’s a way to acheive this:
i’m trying to sort the categories with genres not the posts.
in other way i want a page that list genres when you click on a genre it will display another page with all categories associated with that genre.
a live example here: animerush.tv
thanks
https://www.ads-software.com/plugins/mybooktable/
]]>First, how can i switch the ‘keywords’ in the news feed to tags instead of categories.
Second is i think you can better use a post meta for genres to select. I see on Google that are only 6 values allowed. https://support.google.com/news/publisher/bin/answer.py?hl=en&answer=93992
If no one selected, can you set the default to ‘Blog’.
Third is that i have not seen in the google docs (https://support.google.com/webmasters/bin/answer.py?hl=en&answer=74288) that changefreq, priority, lastmod must given.
Or can you load the feed templates form the theme folder. if not exists load the form plugin folder. That can i change it so, how i need them.
https://www.ads-software.com/extend/plugins/xml-sitemap-feed/
]]>THANK YOU SO MUCH!!!!!!!!!!!!!
[ Not even a couple of hours and you’re bumping already? Don’t do that. ]
]]>I registered a taxonomy in the functions.php file, not sure if I did it right as I’m new to dealing with this. Here’s what I have
function create_my_taxonomies() {
register_taxonomy('genres', 'post', array(
'hierarchical' => false, 'label' => 'Genres',
'query_var' => true, 'rewrite' => true));
}
add_action('init', 'create_my_taxonomies', 0);
Now I’d like to pull the taxonomy data into the sitemap
$xmlOutput.= "\t\t\t\t<news:genres>";
$xmlOutput.= get_the_term_list( 'post_genres' );
$xmlOutput.= "</news:genres>\n";
This code is obviously wrong and was wondering if someone could enlighten me into how I’m supposed to get the genres for population into that second line immediately above. I’ve gone through plugin guides and such but they all show code to insert the URI, text and taxonomy. I just want the taxonomy term or terms in there.
]]>add_action( 'init', 'create_my_taxonomies', 0 );
function create_my_taxonomies() {
register_taxonomy( 'genres', 'page', array( 'hierarchical' => false, 'rewrite' => array('slug'=>'genre'), 'query_var' => 'genre' ) );
register_taxonomy( 'themes', 'page', array( 'hierarchical' => false, 'rewrite' => array('slug'=>'theme'), 'query_var' => 'theme' ) );
}
What’s wrong with that code?
If I change ‘page’ to ‘post’ then it works and shows up on the Add New Post page but that’s not what I want to use it for. I need them for pages and I thought custom taxonomies were supposed to work with pages.
I’d like category-like boxes for Genres and Themes, but I guess I could settle on tag-like boxes if I had to.
Anyone know what’s up?
]]>