Jump to content

Functions only returning one post when it should show all


Lisa23

Recommended Posts

Hi have this function that is meant to return all the post of category news, the problem is that is only returning one post of that category I want to return all the post.

<?php 
//function to display the third last news published
function wptuts_third_last_news_shortcode($atts, $content=null) {
query_posts( 'category_name=news' );   if (have_posts()) :
      while (have_posts()) : the_post();
 		 $blog_link = get_permalink(); // this si the link
         $return_string =  "<a href=" .$blog_link .">" . get_the_title() . "</a>" ;
      endwhile;
   endif;
   wp_reset_query();
   return $return_string;
}  
add_shortcode( 'third_last_news', 'wptuts_third_last_news_shortcode');
?>

Link to comment
Share on other sites

Hi not sure if thats how u mean but I managed to get it fixed like this

<?php 
//function to display all the news titles and link to the story
function wptuts_all_news_titles_shortcode($atts, $content=null) {
query_posts(array('category_name' => 'news', 'order' => 'DESC' , 'offset' => 3)); // offset to skip the first 3 news
   if (have_posts()) :
      while (have_posts()) : the_post();
 	$blog_link = get_permalink(); // this will get the post url
        $return_string .=  "<p><a href=" .$blog_link .">" . get_the_title() . "</a> </p>" ;
      endwhile;
   endif;
   wp_reset_query();
   return $return_string;
}  
add_shortcode( 'all_news_titles', 'wptuts_all_news_titles_shortcode');
?>

 

Thank you very much for the help

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.