Blog
- Rexcel IT Services | Website Design and Development | IT Services > Blog > CMS Website Development
Categories
Recent Posts
- Website Designing and Development Company That Builds Your Digital Future
- OpenCart. Modification systems conflicts: OCMod vs vQmod
- Send Email with attachment on form submission in PHP
- Making simple authentication system using auth command in laravel
- WooCommerce: Add/display Product or Variation custom field everywhere

- September 28, 2025
- CMS Website Development
How to Add Custom Navigation Menus to Your Theme
The navigation bar is a very crucial part of any website to attract the visitors. In WordPress, Navigation Menu is a theme feature introduced with Version 3.0. WordPress provides an easy to use mechanism for introducing customized navigation menus into a theme. To add custom navigation menus into your theme, you need to add the some code segments to your theme files.

- September 28, 2025
- CMS Website Development
Difference between do_action() and add_action() in WordPress
While designing your themes, sometimes you want to be able to push dynamic content to a particular area of it. At this time, the do_action(), add_action() functions of WP are a great tool to use.

- September 28, 2025
- CMS Website Development
How to Add Author Profile Fields
WordPress is renowned among users is that it offers us an incredible user management and ability to capability to create multi-author blogs and publication platforms.In wordpress, sometimes we need to add some extra fields to our author profiles. We can easily do this by adding few segments of code to our functions.php file. In this blog we will explain you how to add author profile fields. Just need to add the following codes in functions.php file:

- September 28, 2025
- CMS Website Development
Difference between add_filter() and apply_filters()
WordPress offers a filter hooks to allow the plugins to modify various types of internal data at run time. It hook a function or method to a specific filter action and then call the functions added to a filter hook. Here we are going to explain you about the difference between Add_Filter and Apply_Filters.