Tag: wordpress

  • difference between wordpress hosting and normal hosting

    difference between wordpress hosting and normal hosting

    Just a quick run down of WordPress hosting; WordPress hosts (by name) – Shared accounts – cPanel (Centos/Apache/Litespeed) – Renamed regular cPanel accounts WordPress – May suggest cache and security plugins – May be limited in help – One-click installation – Emails and all the other bells and whistles you get in a cPanel account […]

  • Download WordPress through terminal and cleanup

    Remove Ftp Connection from plugin installation define(‘FS_METHOD’, ‘direct’);

  • Upload logo wordpress

    Upload logo wordpress

    Theme Customizer should be active on your theme already. When you click Customize, you should see the header options in there. To add a new section that allows custom logo upload, try something like this Add this code on function.php https://gist.github.com/c2975a7a17df24705e99 Then add following code in to your header.php file <img src=”<?php echo get_theme_mod( ‘alts_logo’ […]

  • Add github code in wordpress

    Add github code in wordpress

    Add your code in Gist add the below code into the child theme functions.php file https://gist.github.com/a3f9ad3fb029a6929d48 Then copy your Gist file URL, example : https://gist.github.com/username/a3f9ad3fb029a6929d48/   Remove Username , example : https://gist.github.com/a3f9ad3fb029a6929d48/   Then Add this URL to your wordpress post

  • How to Create a bootstrap WordPress Theme

    How to create a basic bootstrap WordPress theme To start to design and develop your theme, create a theme folder in your  wp-content/themes/your-theme/ we need following files in theme directory index.php header.php footer.php sidebar.php style.css   The layout of your website will look like   Header.php file https://gist.github.com/0c9d70966e954ed0831c Footer.php https://gist.github.com/443e2eaec33d1c68e76e Sidebar.php https://gist.github.com/6ce835ee047d9f8c5ef8 final Index.php https://gist.github.com/047b2f2923d496a02eb5 […]