Akash Wagh |
|
28th Jan, 2020 |
In this article, we will discuss how to update WordPress and plugins without using FTP. Sometimes when we try to update WordPress or Plugin, WordPress is asking to provide FTP information for security purposes. Why this issue? Sometimes WordPress files don’t have sufficient permissions so it is asking for…
Akash Wagh |
|
22nd Nov, 2019 |
Hello Howdy, I hope you are developing a world’s best website in WordPress and struggling to add Login and Logout links in the header and footer menu without using any plugin? Yes?? Then you are reading a good article for development. In the premium themes, we are getting easily log…
Akash Wagh |
|
27th Jul, 2019 |
By default, WordPress is showing default post type on the blog page. If you are showing the latest blogs on the home page and wants to display multiple custom post types on your home page then you are at the correct place. WordPress is providing action filters and using it…
Akash Wagh |
|
09th Dec, 2018 |
WordPress is a great CMS. It’s easy to set a featured image to the post from admin but it’s panic when we try to upload an image from the front end and trying to set it as a featured image. To allow featured image from the front end, you need…
Akash Wagh |
|
02nd Dec, 2018 |
[myad1] WordPress is providing default Widget to get the default category drop-down. If you have a custom category in your blog or website then you have to add a plugin or action hooks in the functions.php. Below is the code which will help you to show the custom category list. We are…
Akash Wagh |
|
01st Dec, 2018 |
[myad1] With the help of the WordPress query, we can get the latest post in the descending order or in the ascending order but we can not use the same query multiple times on each page or on the sidebar. We can use the shortcode to get the latest post in…
Akash Wagh |
|
29th Nov, 2018 |
As being a WordPress developer, We are taking daily challenges while developing. Sometimes we need to use WordPress Datepicker in the theme or plugin. To add a datepicker in the WordPress theme, plugin, and template simply use the below steps. Step 1: Initialise Script and CSS Please copy the below…
Akash Wagh |
|
11th Nov, 2018 |
[myad1] Many developers are avoiding plugins on the website. Your website should have limited plugins for another reason. I was searching for the social sharing plugins but all plugins are adding their own CSS. sometimes it’s quite difficult to add our own CSS with them. So, while searching, I have found…
Akash Wagh |
|
|
In WordPress, we can upload images and files in the media section. and our media look like the below screenshot. If you want to upload the SVG file into WordPress then WordPress does not allow us to upload the SVG files and giving below error. We can resolve these issues…
Akash Wagh |
|
08th Nov, 2018 |
[myad1] We are a developer and wants to create a WordPress shortcode while developing themes or website. We can use basic shortcode function without ob_start to render the output. Generally, we are creating shortcodes and after placing it, Our output is rendering somewhere on the page instead of mentioned place….
Akash Wagh |
|
31st Oct, 2018 |
[myad1] Many WordPress developers are developing custom queries to get the data from multiple post types. I’m also a developer and was searching for the solution to get the post data from multiple posts in a single query. While searching the solution, I got the below solution. I want to…