What’s Coming in WordPress 5.2 (Features and Screenshots)

The newest Beta Release for the most popular website CMS in the world is expected to be released this month. We have been following feature the release notes and development of 5.2 closely and have listed the new features and development here. WordPress 5.2 comes with a number of new features  and focuses on fixing … Read more

How to Schedule Posts in WordPress

yes you can Schedule post in wordpress. you can Step by Step Follow and setup time and Date.schedule posts in WordPress is a great way to regulate content output and timing. In case you have a lot of articles waiting to go live, publishing them in a single go may not be the best approach. Hence this … Read more

WordPress Actions, Filters, and Hooks : A guide for non-developers

Hooks are provided by WordPress to allow your plugin to ‘hook into’ the rest of WordPress; that is, to call functions in your plugin at specific times, and thereby set your plugin in motion.In WordPress code there are numerous pre-defined actions or hooks that allow developers to add their own code at these points. There … Read more

How to Fix “Brifefly unavilable for Scheduled maintenance. check Back in a minute” Error

“Briefly unavailable for scheduled maintenance. Check back in a minute” is an error in WordPress, which usually occurs when an update is not successfully completed. This is the common problem in theme update and plugins updates.the update process may timeout, leaving your site in maintenance mode and inaccessible. In this article, I will familiarize you with … Read more

What is the difference between “post” and “page” in WordPress?

many people are confused in page and post difference. wordpress  comes  with two content type post and page begineer developer are confused, Pages These are your static pages.  Examples of your pages would be: About, Services, Contact, etc. While the WordPress database stores the published date of the page, pages are timeless entities. For example, your about … Read more

WordPress Custom Taxonomy With Same Slug As Custom Post Type

If you want the Terms in your Custom Taxonomy to have their URL path containing their Custom Post Type slug instead of Custom Taxonomy slug without showing 404 page, that can be a little tricky, and as I found throughout the blogs and forums quite impossible. create register post type // register custom post type function create_post_types() { register_post_type(‘latestcases’, array( ‘labels’ => array( ‘name’ … Read more