Changes between Initial Version and Version 1 of Ticket #20956, comment 14
- Timestamp:
- 06/14/2012 08:19:49 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20956, comment 14
initial v1 5 5 I used the following to alter the "Posts" menu item to read "Blog": 6 6 7 8 {{{ 7 9 add_filter( 'menu_items' , 'custom_menu_items' , 1, 2 ); 8 10 … … 11 13 return $menu; 12 14 } 15 }}} 16 13 17 14 18 I think there might be a few places within that same file to add similar filters. I just added it at the top, before some other changes are made to the menu. But it seems to work. :)