not sure what you want to do. your attached image shows 1 published and 2 private post, do you want to change status of private posts? or make the one which is private to public?
all of your published posts will appear under the published tag automatically, dont worry about that.
Hi
thanks for the reply. I would actually like to remove those 3 links all together All – Published – Private
should basically i just want the sub menu gone if thats possible
thx again for yout time
TGhanks for your help but i was able to figure it out….. In case anybody needs this info what i did was add a filter to the functions.php file. What i added to that file is —–>
function posts_filter() {
echo ‘<style type=”text/css”>
/*admin all-posts screen*/
/*#posts-filter,*/
/*ul.subsubsub .mine,*/
ul.subsubsub .all,
ul.subsubsub .publish,
ul.subsubsub .sticky,
ul.subsubsub .trash,
ul.subsubsub .draft,
ul.subsubsub .pending,
.view-switch,
.tablenav ,
.row-actions .editinline,
.check-column
* {display:none;}
</style>’;
}
add_action(‘admin_head’, ‘posts_filter’);