Create navigation menu in admin side in wordpress custom theme
Menu in WordPress admin panel – In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need…
Menu in WordPress admin panel – In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need…
We can add/include any php file to wordpress other php file inside the wordpress custom theme by using this steps: functions.php function shortcode_fun(){ include_once get_theme_file_path().'/shortcodes/form.php'; } add_shortcode('sc', 'shortcode_fun'); shortcodes/form.php <div…
Normally, you will use shortcodes inside content areas like posts, pages, or sidebar widgets. However, sometimes, you may want to add a shortcode inside your WordPress theme. In this article,…
I'm trying to upload files to the default "wp-content/uploads" directory. Have tried almost all the available tags, still not working. You can follow this steps: //taking image in $name_icon $name_icon…
A mobile responsive menu is a drop-down menu that is specifically designed to work on mobile devices such as smartphones and tablets. This type of menu is usually triggered by tapping on…
The Single Posts template controls the layout of individual posts on your site. When you make a change to this template, the change will reflect on all your posts, ensuring a consistent experience for…
Adding custom scripts or stylesheets to your WordPress site is usually done to improve the functionality, features, and design of a site. There are multiple ways of adding JavaScript (also…