https://millionclues.com/wordpress-tips/git-github-basics/
https://millionclues.com/wordpress-tips/git-github-basics/

https://millionclues.com/wordpress-tips/git-github-basics/

Sometimes on a specific project, you have requirement to also display last modified date of pages and posts along with published date. So here is a code snippet to display both in your WordPress. Posted on <?php the_time( ‘F jS, Y’ ); ?> <?php // display last modified date $modified_time = get_the_time( ‘U’ ); $new_modified_time…

In version 3.1, WordPress added a fixed menu bar at the top of the website, it’s called WordPress Admin Bar. Ever since the introduction of the WordPress admin bar, it has been a topic of discussion among developers. Some developers hate it because in some cases it breaks the website design and for that matter,…

By OutsourcedContent — on September 12, 2017 boolval() is a PHP function that was introduced in PHP 5.5. If you try to use it on a server that runs PHP 5.4 and lower, you will get an error like this: Fatal error: Call to undefined function boolval() in /path/to/file/file.php on line 12 To fix this…

WordPress provides several navigational template tags to make it easy for developer to create previous and next post link navigation for browsing through WordPress blog. There are basically two different types of template tags used for chronological post navigation, posts_nav_link() and previous_post_link() & next_post_link(). But there is a small problem with these template tags, that…

In previous article we show you how to clean WordPress admin dashboard by removing WordPress dashboard widgets. In this article, we will discuss how we can remove submenu items from the WordPress admin. Sometimes you might need to remove posts, pages, plugins or other submenus items from the WordPress dashboard. For example, if you are…

If you upload images via the WordPress media uploader and insert it into your post, it will automatically include the image width and height attribute in the html <img> tag. These are normally desirable, as it assists the browser in making the appropriate room for the image during layout. But for some reason if you…
