Slightly different than the vanilla WordPress way… Use a custom walker nav menu to output menu item descriptions in the menu. ( the descriptions can be added after selecting ‘Description’ in Screen Options ) Menu_With_Description is a class that extends Walker_Nav_Menu class. add_filter( ‘wp_nav_menu_args’, function( $args ) { if ( isset( $args[‘menu_class’] ) && ‘menu […]
Archives for August 2015
Renaming Multiple Files Using the Command Line
Had about fifty jpg files I needed to rename sequentially, starting at 15 to accommodate an existing 14 images. Using the command line (zsh) made it a lot easier than doing it by hand. Leaving this here for my personal benefit, but if you happen to come across it and it helps, that’s great! The […]