Category: Wordpress

  • reCAPTCHA v2 Responsive
    ,

    reCAPTCHA v2 Responsive

    In this we can see how to make the google reCAPTCHA v2 as responsive for mobile devices.Thats very simple Just add the below style code in your css @media screen and (max-width: 575px)…

  • Shortcode creation for CPT

    Shortcode creation for CPT

    Create the shortcode for our custom post type. Step 1: Add the below code into functions.php Here custom post type name is ‘events’ add_shortcode( ‘all-events’, ‘display_custom_post_type’ ); function display_custom_post_type() { $args =…

  • PHP in wordpress widgets

    PHP in wordpress widgets

    In this how to write the php code in wordpress sidebar widgets Step 1: Add the below code in functions.php to write the php code in wordpress widgets add_filter(‘widget_text’,’execute_php’,100); function execute_php($html) {…

  • Display a List of Child Pages For a Parent Page in sidebar

    Display a List of Child Pages For a Parent Page in sidebar

    In this tutorial to show How to get child pages of specific parent page in sidebar dynamically Ex : Products is a parent page and Product-1,product-2,etc are child page(sub-pages) STEP 1 :…

  • Dynamic dependent Dropdown – Categories posts

    Dynamic dependent Dropdown – Categories posts

    This post guides you to how  dynamically add drop down of wp posts categories, and  based on the selection of category from drop down  sub-categories or posts will show in another drop…

Top News