Filter query_posts by tag slug on “Tag Archive” page (when tag is 2 or more words)
I’m using the following to bring up a tag archive page: <?php query_posts( “tag=”. ” . single_tag_title( ”, false ) . ” ); … Read more
I’m using the following to bring up a tag archive page: <?php query_posts( “tag=”. ” . single_tag_title( ”, false ) . ” ); … Read more
In my plugin, I’m creating a custom post type that has an archive and uses the rewrite parameter to choose a slug: $args … Read more
I have a WordPress site using pretty permalinks. I want to filter a string to that the it ends up with the exact … Read more
I’ve been searching a way to have kind of “two” slugs for a custom post, let me give an example: www.mywebsite.com/articles/ or www.mywebsite.com/articles/page/2/ … Read more
Followings are the codes I added in my theme function.php file // Taxonomy Resource $labels = array( ‘name’ => ‘Resources’, ‘singular_name’ => ‘Resource’, … Read more
I am using the following code to display my custom taxonomy slugs. However it is only displaying the first category and not all … Read more
I reviewed all related questions but none tackle this exactly so I’m posting the question in hopes the pro’s know how to handle … Read more
I am using the “Edit Author Slug” plugin to provide public profile pages on my site using the following structure: mysite.com/users/username. Now, I … Read more
this is my situation: I have a Custom Post Type named struttura (like accommodation): function custom_post_struttura() { $labels = array( ‘name’ => _x( … Read more
I have a hierarchy that I need to get data from. It’s the child (by slug name) that I need to get while … Read more