Category: Wordpress

  • How To Change Your Favicon From Your WordPress Site

    How To Change Your Favicon From Your WordPress Site

    There are Few Easy Step that can you follow to change your old looking WordPress Favicon to Your Own.

    Click On Appearance Form dashboard of WordPress Site. Then

    Click To Customize Then >

    Site Identity  Then > Select Image Form Your  Gallery.

    Done…

  • How to Add Google Analytics to WordPress

    How to Add Google Analytics to WordPress

    Process 1: With Using Plugins :
    1. Google Analytics for WordPress by MonsterInsights
    2. Insert Headers and Footers Plugin
    Process 2: With Out Using Plugins :
    1. Install Google Analytics in WordPress Theme
        • Open Your Theme Directory and open header.php file
        • Then Inset Your Google Analytics Tracking Code
        • After the <body> Tag
        • Past Your Code
        • That Look Like
    <!-- Global site tag (gtag.js) - Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=UA-0000000-1"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
    
      gtag('config', 'UA-000000-1');
    </script>
    

     

  • How to Enable Multisite in wordpress

    How to Enable Multisite in wordpress

    Allow Multisite

    To enable the Network Setup menu item, you must first enable multisite in the wp-config.php file.

    Open up wp-config.php and add this line above where it says /* That's all, stop editing! Happy blogging. */. If it doesn’t say that anywhere, then add the line somewhere above the first line that begins with require or include:

    /* Multisite */ define( 'WP_ALLOW_MULTISITE', true );

     

    You will need to refresh your browser to continue.