kcdipesh / last-in-last-out

A wordpress plugin to display posts in admin in "last in last out" philosophy by adjusting menu_order property

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

last-in-last-out

A wordpress plugin to display posts in admin in "last in last out" philosophy by adjusting menu_order property

##Developers Options Post type can be added through filter hook lilo_post_types

Example

function add_custom_post_as_lilo($post_types)
{
    $post_types[] =  'page';
    return $post_types;
}
add_filter('lilo_post_types','add_custom_post_as_lilo');

##User Options Post type can also be select via option page under Setting called LiLo (for Last In Last Out)

About

A wordpress plugin to display posts in admin in "last in last out" philosophy by adjusting menu_order property

License:GNU General Public License v2.0


Languages

Language:PHP 100.0%