Create a short code to display a specific loop
-
I'm breaking my head trying to create a short code to display certain loop, however I'm totally cut, I can not figure it out how to do it, since it's the first time I try to do it... I do now want to set any parameter, just put exactly as it if... I would appreciate if anyone can light me... This is the code I want to put into the shortcode <div class="clear"></div> <div class="childs grid_12"> <?php $the_query = new WP_Query( array( 'post_parent' => '8', 'post_type' => 'page', 'posts_per_page' => 4, 'sort_column' => 'menu_order' ) ); ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <div id="service-hp"> <?php the_post_thumbnail('home-thumb') ?> <h2><?php the_title() ?></h2> <?php the_excerpt() ?> <a class="read-more" href="<?php the_permalink() ?>">en savoir plus <img src="<?php bloginfo( 'template_url' ); ?>/images/read-more.png"></a> </div> <!-- ends here --> <?php endwhile; ?> <?php wp_reset_query() ?> </div>
-
Answer:
Take a look at my latest plugin http://wordpress.org/extend/plugins/shortcodes-ui/ which lets you create shortcodes without coding, all you have to do is paste your loop inside the right field of the shortcode (PHP) and you are done.
andresmijares25 at WordPress Visit the source
Other answers
I'm displaying my loops this way: function loop_shortcode( $atts = '' ) { (your shortcode code goes here) } function my_loop_shortcode( $atts ) { ob_start(); loop_shortcode($atts); return ob_get_clean(); } add_shortcode('my_loop', 'my_loop_shortcode'); The "normal" way looks like this: function my_loop_shortcode( $atts ) { return 'your shortcode output'; } add_shortcode('my_loop', 'my_loop_shortcode'); But doesn't cope with loops too well. Learn more at http://codex.wordpress.org/Shortcode_API
Wordpressor
Related Q & A:
- how to Create a Java Package from MATLAB Code?Best solution by Stack Overflow
- How to create a Country Specific website?Best solution by webhostingtalk.com
- How do I create a guest ftp user and give access to specific sub-folder with SSH?Best solution by Server Fault
- How do I just take a short clip out of a video?Best solution by ehow.com
- What is a creative way to display a family tree?Best solution by geni.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.