What are PHP Development Trends In 2023 As of my last knowledge update in September 2021, I can provide you with some general trends that were anticipated for PHP development in 2023. However, please note that these trends might have evolved or changed since then. It’s recommended to consult more recent sources for the most up-to-date information. Here are some…
Category: Wordpress
How to Write a Blog With WordPress ?
Writing a blog with WordPress is a popular choice for numerous bloggers due to its stoner-friendly interface and expansive customization options.
Facebook Social plugins for your website
Facebook Social plugins for your website
How to Create Website From Scratch ?
How to Create Website From Scratch Building a website can be fast, cheap, and easy if you know the best way to do it. You might have heard stories of professionals doing it and think that creating a website is expensive and complicated? It can be in some cases, but don’t worry – there are ways that even a complete…
8 WordPress CRM Plugins to Grow Your Business
True customer relationship management (CRM) software helps you understand your customers and engage with them throughout the entire customer lifecycle. Here we are going to discuss 8 WordPress CRM Plugins that help you to grow your business. This is accomplished by collecting and analyzing lots of data. From prospecting to marketing to customer service, gathering and analyzing customer data can…
WordPress customization part 3- Changing the order of dashboard menus
This is the 3rd part of wordpress customization series. Now we are going to change the order of wordpress dashboard menus. we can change the order using menu_order filter. Before using menu_order filter, we need to activate custom_menu_order first. Go to your functions.php file and put the following code. function custom_menu_dashbaord_order($menu_order) { if (!$menu_order) return true; return array( ‘index.php’, //…
How to rename wordpress dashboard menu ?
Go to functions.php and write the following code.
WordPress customization part 2 – Renaming dashboard menus
This is the part 2 of wordpress customization series. Sometimes guys you need to rename your wordpress dashboard menus as your convenience. Like if you want to change your Posts menu to Blog posts, you can do it easily with admin_menu hook. First of all we go to functions.php and create a custom function as follow. Function rename_top_level_menus(){ global $menu;…
WordPress customization part 1- removing menu from wordpress dashboard
This is the first part of wordpress customization series. In this tutorial i will discus about removing menu from wordpress dashboard. Removing a menu from dashboard doesn’t means that the menu has removed forever but it is just hide from admin screen. WordPress is a very popular cms (Content Management System) that provide us a very usual and easy back end environment.…
WordPress Hooks and Filters introduction
WordPress hooks are predefined functions that provide the facility of attaching your custom php code to wordpress. You can change or modify the default behavior wordpress using Hooks. Custom functions are applied into action hooks or filter hooks. There are two types of wordpress Hooks. 1: Action hooks 2: Filter hooks Action hooks are functions preformed when an event…