It’s about 2 years that WP Mail Logging is available in the plugin repository. In the following I want to talk about my experience with making a WordPress plugin. Scaffolding I always wanted to learn more about WordPress development and WordPress Plugin Development in first place since I started my first Website with WordPress in 2007 or so and misusing… Read more →
Tag Archive for developer
Controlling Nav Menu Generation
You might want to tweak the output of your menu items in WordPress. You can use this to remove or change a link from a specific item. To do so we can make use of the filter walker_nav_menu_start_el – it’s called for each traversed menu item when building the menu. This is actually done in the nav-menu-template.php script in the class Walker_Nav_Menu and… Read more →