Opened 12 years ago
Closed 10 years ago
#28349 closed defect (bug) (invalid)
WordPress Quick Edit Post Tags not display on frontend
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 3.9.1 |
| Component: | Quick/Bulk Edit | Keywords: | |
| Focuses: | Cc: |
Description
I'm adding tags to wordpress pots using quick edit as below.

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
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Quick Edit Screen