[wp-trac] [WordPress Trac] #28349: WordPress Quick Edit Post Tags not display on frontend

WordPress Trac noreply at wordpress.org
Sat May 24 18:33:40 UTC 2014


#28349: WordPress Quick Edit Post Tags not display on frontend
--------------------------+-----------------------------
 Reporter:  suneth2       |      Owner:
     Type:  defect (bug)  |     Status:  new
 Priority:  normal        |  Milestone:  Awaiting Review
Component:  General       |    Version:  3.9.1
 Severity:  normal        |   Keywords:
  Focuses:                |
--------------------------+-----------------------------
 I'm adding tags to wordpress pots using quick edit as below.

 [[Image(http://i.stack.imgur.com/r6tlC.jpg)]]
 and i use this kind of code to fetch that posts in frontend, but i cannot
 get above updated tag posts, when i go to single posts and click update
 button, it appears on frontend,

 i have lots of posts so i cannot update one by one, my wordpress version
 is 3.9.1 anyone can solve this problem, thank you


 {{{
 $featured = new WP_Query(
                         array(
                         'posts_per_page' => '100',
                         'post_type' => 'reviews',
                         'tag' => 'hot',
                         'meta_key' => 'forder',
                         'orderby' => 'meta_value_num',
                         'order' => 'ASC',
                         )
                     );
                     $i = 1;
                     if ($featured->have_posts()) :
                                             while($featured->have_posts())
 : $featured->the_post();
  the_title();

 endwhile;
 }}}


 PS. all tags are saving fine on quick edit, but not display in frontend

--
Ticket URL: <https://core.trac.wordpress.org/ticket/28349>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list