Customize The Excerpt Length in WordPress Using PHP

If you just dabble in WordPress development even the slightest bit, you know about the famous the_excerpt(); function in WordPress core. If you aren’t familiar, the function simply returns a shorten string of the content for the current post or page. The string is stripped of all html tags or styling. Great for creating post […]

How to use add_submenu_page and add_menu_page in WordPress

If you have made a plugin or theme for WordPress, you know the add_menu_page hook. add_menu_page is a function in WordPress that allows you to add a top-level menu item to the WordPress dashboard. It is generally used to create custom admin pages and is typically called from within a custom plugin or theme. It […]