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

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

On successful registration of a user, WordPress by default shows “Registration Complete. Please check your e-mail.” message. But on a specific project/website you may want your newly registered user to display a custom registration message or you may want to redirect to custom page. In my opinion, it’s a better idea to redirect users to…

By OutsourcedContent — on November 10, 2017 To retrieve the post title of a post as saved in the wp_posts table in the WordPress database use this <?php echo get_post_field( ‘post_title’, $post_id, ‘raw’ ); ?> If you use get_the_title() function, WordPress applies the ‘the_title‘ filter before returning the value.

There are many comment services available for WordPress like Disqus, Intense Debate, Facebook Comments, Google+ Comments and many more. But most of the WordPress themes still utilize the standard WordPress comments system. Because it’s very easy to use, nothing to set up and works flawless out of the box. WordPress introduced a simple tag in…

By OutsourcedContent — on October 6, 2017 Here is the HTML Markup <div class=”parent”> <div class=”child”> <?php echo “Hello”; ?> </div> </div> And the CSS .parent { position: relative; } .child { position: absolute; bottom: 0px; }

WordPress has built in compression for JPG images. Whenever you upload an JPG/JPEG image to WordPress media library, WordPress will automatically compress your images to 90% of the original quality, this is intended to help your pages load faster and keep file sizes smaller. But sometime it’s essential to have high quality images on your…

On a project, sometimes you may require WordPress to perform search through post titles only and exclude post content as well as post excerpts. Although it’s not very useful to exclude post content from searches because then you will get less relevant results and also less results in quantity, but on a special project you…
