The post-status tag has no wiki summary.
1
vote
1answer
707 views
Custom column for changing post status via ajax
I'm currently trying to implent a new custom column at the page manage screen that will let me change the status (published/pending) of the different pages via an easy toggle link.
From what I've ...
0
votes
1answer
36 views
featuring old articles without messing up with the archive
This is all about featuring content in WP.
Say, you got 1000's of posts that you accumulated over the years and each has their own original ( and true ) post dates.
And now you want to feature them ...
4
votes
1answer
180 views
Changing post status in one click
I want to add custom button "Send for correction" somewhere near the "Publish" button. This custom button must change a post status from "Pending" to my own created status named "On correction".
For ...
5
votes
1answer
336 views
how to assign a status/mark to post?
I want to mark some posts to include them in a featured content slider. For that purpose, I want to include a check box on the new post page, so that if the checkbox is selected the post is marked as ...
1
vote
1answer
512 views
Setting a title on a Custom Post Type that doesn't support titles
I have a CPT called "profile" that only supports the editor and thumbnail. Each user is limited to posting just 1 profile.
I'm looking for a way to prefill the title and slug fields with the display ...
1
vote
1answer
791 views
Show scheduled posts in archive page
I'd like my archive.php page's daily view (is_day) to display scheduled posts (post_status=future). For example, if I go to mysite.com/2011/05/20 I would see all posts scheduled to appear on May 20.
...
0
votes
1answer
212 views
Custom Post Status Posts viewable to the public
I am using EditFlow's "custom status" feature for an event calendar plugin I am writing for a client.
I've created a status called "previous events", when a date has happened the events post_status ...
8
votes
3answers
7k views
How to Get All Posts with any post status?
i am creating a frontend dashboard where i need to show all the post by the current user. So i need to show posts with all post status. Mainly published, trashed and the pending. I am now using ...
2
votes
1answer
221 views
How can I run custom function when post status is changed?
I can hook custom function to each of trash_post, edit_post, private_to_publish etc. to meet some of my requirements, but I need also to check for more possible transitions like 'pending to draft', ...
1
vote
1answer
247 views
WP_Post_List_Table::get_views - Have post counts account for filters?
Toward the top of the edit.php screens there is a list that displays post statuses along with the post count. I believe this is generated by WP_Post_List_Table::get_views. For example All (7) | ...
0
votes
1answer
133 views
Why this plugin doesn't work with media upload page?
I found this plugin very useful ajaxed-status
It was created for post and page, and I want to apply it on media library. so I commented out the line if (is_admin() /*&& ($pagenow=='edit.php' ...
0
votes
1answer
154 views
Changing post status
Refering to Post status because it's not allowed to do a question on a answer ?!
Original post is from Bubka Gob and the answer came from Chris O .
I have add their code to functions.php:
...
0
votes
1answer
388 views
How to Get All Posts but the Private ones?
I am creating a frontend mosaic view where i need to show the most recent posts. So i need to show all published posts to every visitor, but keep the private ones for the logged in users.
I know how ...