Category: Web Development

WordPress custom YouTube feed plugin

 The Custom YouTube Feed plugin allows WordPress site owners to display videos from multiple YouTube channels and individual videos in an attractive grid layout. The plugin features pagination, popup video playback, and automatic caching for improved performance. Key Features Multiple Channel Support: Add videos from multiple YouTube channels Individual Video Support: Include specific videos by […]

Read More

Disable WordPress Comment System Completely

 Here’s a comprehensive function to completely disable the WordPress comment system: <?php // Completely disable WordPress comments and related functionality function disable_comments_system() { // Disable support for comments and trackbacks in post types foreach (get_post_types() as $post_type) { if (post_type_supports($post_type, ‘comments’)) { remove_post_type_support($post_type, ‘comments’); remove_post_type_support($post_type, ‘trackbacks’); } } // Close comments on all existing posts […]

Read More

WordPress change default from name and email id

 When you get any email from your self hosted WordPress website, form name of that email will be WordPress which is quite annoying to you or your clients. You can overwrite this by adding this small piece of code in the functions.php file of your theme. function custom_wp_mail_from_name($email_from_name) { return ‘Your Website Name’; // Change […]

Read More

WordPress reserved terms you should never use

 While developing WordPress theme or plugin we use different WordPress keywords or terms, additionally while handling forms fields and custom post types we have to consider what names we can use or not. The restricted names are called reserved terms. WordPress itself reserves few keywords or terms which we can not use in our coding. […]

Read More

Websites to find free high resolution stock-images

 We always prefer good, high quality stock-images for our websites, blogs, print designs and may be for some other graphical work. Getting good images always cost a lot. Alternatively there are some websites which offer free images called ‘Public Domain Images’. Public domain images are not covered by intellectual property (Creative Commons license) or copyrights […]

Read More

Boosting loading speed of your WordPress website

 In the current landscape, WordPress enjoys widespread use, leading to a surge in website creation. As this platform sees continuous growth with individuals and businesses joining in, it’s crucial to acknowledge the factors influencing website loading speed. Optimizing your website’s loading speed is pivotal. Here are some essential considerations: Optimized Plugins and Themes: Utilize plugins […]

Read More