The wonderful plug-in is showing up as abandoned in the WordPress repository? If it is still being maintained, would it be possible to issue an update so that WordPress stops flagging it?
]]>Hi and thanks for your great plugin. Every client loves it and we have been using this as standard configuration of WP in many years. The last update said Couldn’t match CSS with new menu item style, and we also found it little tricky to get rid of the border before the post list mark up container, as the element before has no reachable classname.
This solution works for us and as we can see, the look is now restored as before the update of WP menu layout. To be said, we have some other layout CSS on the admin menu and your plugin as well, but MAYBE this would be a hint to use on enabled submenues.
#adminmenu .post_list_view a:focus, #adminmenu .post_list_view a:hover, .folded #adminmenu .post_list_view .wp-submenu-head:hover {
box-shadow: none; transform: none;
}
#adminmenu a:empty:hover {
box-shadow: none; transform: none;
}
/* optional to restore the space */
#adminmenu .wp-not-current-submenu .wp-submenu {
border-left: 0px;
}
]]>
Hello,
with “The Events Calendar” https://www.ads-software.com/plugins/the-events-calendar/ there will get Error like this:
Unknown column 'EventStartDate' in 'order clause' für Abfrage SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.post_parent = 0 AND wp_posts.post_type = 'tribe_events' AND ((wp_posts.post_status <> 'trash' AND wp_posts.post_status <> 'auto-draft')) ORDER BY EventStartDate DESC, wp_posts.post_date DESC LIMIT 0, 999 von require_once('wp-admin/admin.php'), require('wp-admin/menu.php'), require_once('wp-admin/includes/menu.php'), do_action('admin_menu'), WP_Hook->do_action, WP_Hook->apply_filters, AdminMenuPostList->add_post_list_view, get_posts, WP_Query->query, WP_Query->get_posts
Addition:
For events it works, the message comes if you are active for hidden post types “Venues” and / or “Organizer”.
THX
Henry
Continuing my topic previously raised in a review…
I’m happy to work with you on this but I’m on holiday for a week from Saturday so may not be able to pick up immediately. The “only on hover” options sounds a good idea as this will enable quick access to a post or page without cluttering up the main menu. By the way, I got a simiar but worse effect with Admin Menu Tree Page View when I tried this as an alternative. However, this works with another website I get involved with but that has far fewer pages. So they probably have a similar problem.
Thanks and A HAppy New Year! Mike
]]>Hi, and thanks for a great plugin.
We used this for many years and still have to hack the core to make it work with some custom post types. Even if post types are private or non-public, we still might use the admin-menu to list their current posts. Since some updates ago, filters applied to $args for child-posts as well. Perfect, but all the menues for our special types dissappeared with that update:
Seems like a new helper function or architecture arrived, without a filter:
function get_all_post_types() {
return get_post_types(array(
'public' => true
));
}
We also need to filter in public => true
to all our post types in the Menu Post List settings page. A filter here would sort this out as well. Just as you added:
$child_query = apply_filters('AdminMenuPostList_child_query_args' ....
Thanks!
]]>At the Configuration the custom post-types reply and topic are selectable, but any setting don’t do. Only forums working like expected.
Thank You!
Regands
Henry
Hi,
Everything works fine in very complex invoriments we tested far. I It doesn’t seems to be needed for any update.
Howvever, there is a wishlist, and one of them is to allow to hook into the list before the plugin get the values.
When using WordPress as a project tool, or editorial purposes, there are MANY POST STATUS involved. A Hook could allow to combine “publish” “analysing” “pending” instead of just current options as ‘publish’ or ‘any’.
Also, if any plugin uses public custom post statuses, settings are forced to be “Published only” if the menu not gonna pickup a h*ll lot of items…
To keep the SIMPLENESS of this plugin, just add a FILTER, no fancy new options! Below is how we HACKED the plugin to make it more useful for our needs.
2 Suggested filters:
plugins/admin-menu-post-list/admin-menu-post-list.php:
INSERTED AT LINE: 274
$args = apply_filters('AdminMenuPostList_get_posts', $args, $post_type, $max_numberposts, $post_orderby, $post_order, $post_exclude);
plugins/admin-menu-post-list/admin-menu-post-list.php:
INSERTED AT LINE: 283
$child_query = apply_filters('AdminMenuPostList_child_query', $child_query, $post_type, $max_numberposts, $post_orderby, $post_order, $post_exclude);
This is how we using it to allow BOTH publish and draft yo be visible, but no other plugin statuses:
add_filter('AdminMenuPostList_get_posts', 'my_AdminMenuPostList_get_posts', 10, 6);
function my_AdminMenuPostList_get_posts($args, $post_type, $max_numberposts, $post_orderby, $post_order, $post_exclude){
$post_exclude = array('publish', 'draft');
$args = array(
"post_type" => $post_type,
"parent" => "0",
"post_parent" => "0",
"numberposts" => $max_numberposts,
"orderby" => $post_orderby,
"order" => $post_order,
"post_status" => $post_exclude,
"suppress_filters" => 0
);
return $args;
}
Thank you!
]]>Hi.
I’m mostly using this plugin to show static pages (not posts), and it would be helpful to have an option to show the pages in the menu order, so the same order that appears in the front-end of the site.
Thanks.
]]>Hi,
If Title of Post is long in Japanese, I think that it is garbled in high possible.
For example screen
If you consider of Japanese user, I think better using the ‘mb_substr‘ instead of ‘substr‘.
OR, Addition of a filter.
Thanks,
gqevu6bsiz
It would be helpful to have an option to order the list of posts or pages by the date most recently modified or edited. Ordering by date created creates a static ordering. I’d like to see the pages or posts I just worked on be shown at the top of the list.
Regards.
]]>Hi
As you know I love this plugin. Thats why I was sad to discover that it was made neutrlized by this plugin: https://www.ads-software.com/plugins/wp-admin-ui-customize/.
I have started a support ticket at that plugin, but I wanted to do the same here. I don’t know whos “fault” it is, or if it even can get “fixed” by either of you.
Anyway, now you know ??
Thanks again for a great plugin!
]]>I have 30,000 posts. When I activated the plugin and selected all in posts, the WordPress admin panel went white and I was no longer ab;e to get to the admin panel. I deleted the plugin via ftp and all went back to normal.
]]>Hello
Using your Admin Menu Post List but experiencing a problem. I have post that are scheduled for future publication. Is there a way to sort by actually published post (date doesn’t do that – it shows all the posts).
Yours
Filip
Hi there!
Seems like awesome plugin idea! I am just curious if the number of posts that gets displayed is changeable? — So for example, display the latest 5 posts or so in that list?
Thanks, Dave ??
]]>