Yearly Archives: 2017

Remove Website/URL From WordPress Comment Form

Add this to the active theme’s functions.php. /** * Remove Website From Comments Form * * @since 1.0 * @refer https://millionclues.com/wordpress-tips/remove-websiteurl-from-wordpress-comment-form/ */ function mc_disable_comment_url ($fields) {   unset($fields[‘url’]);   return $fields; } add_filter(‘comment_form_default_fields’,’mc_disable_comment_url’);

Posted in WordPress Tagged with:

9 Popular Gadgets That Are Revolutionary

The world is full of gadgets and gizmos. Everywhere you look, you are going to see some kind of gadget that has had some kind of technological impact on the world. For example, everywhere you look, you are going to

Posted in Guest Posts Tagged with: ,

Get First Category By Post ID In WordPress (Outside The Loop)

Use this code snippet to display the first category of a WordPress post. <?php $smello = (array) get_the_category($post_ID])[0]; echo $smello[‘cat_name’]; ?> where $post_ID is the ID of the post whose category is required. Change [0] to [1] to get the

Posted in WordPress Tagged with:

Using WordPress Menu As Bootstrap 4 Navbar

This tutorial will help you use a WordPress menu with the Navbar component of Bootstrap 3 and Bootstrap 4. Please refer this guide for how to do it directly with Bootstrap. Here is the code to use WordPress navigational menu

Posted in WordPress Tagged with: ,

5 Reasons Why You Need a Lawyer During a Wrongful Termination

One of the worst things that can happen to you in the workplace is wrongful termination. No matter for what reason you find yourself terminated, if you think that your employer didn’t have a good reason to fire you or

Posted in Guest Posts Tagged with: