Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
menu-manager.php tag childpages
#1
Just a little tweak to make the menu-manager (admin backend - drag and drop menu order) look a little bit more organised by giving all childpages a 'hasparent' class.

changed the following in menu-manager.php on line 66:

Code:
if ($page['parent'] != '') {
                    echo '<li class="clearfix hasparent" rel="'.$page['slug'].'">
                                            <strong>#'.$page['menuOrder'].'</strong>&nbsp;&nbsp;
                                            '. $page['menu'] .' <em>'. $page['title'] .'</em>
                                        </li>';
                                        }
else {
                    echo '<li class="clearfix" rel="'.$page['slug'].'">
                                            <strong>#'.$page['menuOrder'].'</strong>&nbsp;&nbsp;
                                            '. $page['menu'] .' <em>'. $page['title'] .'</em>
                                        </li>';
                                        }

Now the menu-items with a parent can be styled differently (for example I've set a margin-right on li.hasparent strong, so every childpage has an indent)

Perhaps someone can simplify the code a bit, and have a look if it has any side effects?
<º)))><
Reply


Messages In This Thread
menu-manager.php tag childpages - by uitdecom - 2013-02-10, 00:54:02
RE: menu-manager.php tag childpages - by mvlcek - 2013-02-10, 01:00:16
RE: menu-manager.php tag childpages - by uitdecom - 2013-02-10, 01:04:54



Users browsing this thread: 1 Guest(s)