Leaniebiz
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Select Menu] More then one First Item NameHere is a screenshot to the part I mean: Click here.
The problem we have with this site is that there have to be 2 differend select menu’s. One for vacantion destinations and one for mobile blog tabs.
One needs to have choose your destination and one need to have choose your category.
Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] WPML supportHello Macro Chiesi,
Thanks for the reply! I will take a look at the FAQ and topic for more information.
The link to the thread is: http://wpml.org/forums/topic/translate-widget-areas-with-blackstudio-tinymce/#post-135110
Forum: Fixing WordPress
In reply to: Insert category of taxonomy between custom post type and postThanks very much! It works like a charm.
Forum: Fixing WordPress
In reply to: Insert category of taxonomy between custom post type and postWow very nice work. I’ve been looking very long for a function like this since it will give you filter possibility’s in a custom post type.
How can I call the function results in the custom post type loop?
<?php // The Query $query = new WP_Query( 'post_type' => 'prodotto', 'posts_per_page' => 12 ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); ?> <HTML content> <?php } endwhile; ?>This loop will show the main custom post type: prodotto. In this page I want to make a category menu with adidas, nike etc.. And when a user clicks on adidas it needs to show them the loop of prodotto/adidas.
Is this possible without creating a load of new archive-name.php pages?