Tag: php

  • Best php frameworks

    Best php frameworks

    If you develop applications in PHP, here are some of the most important PHP frameworks and libraries that you should know about   Laravel –  The PHP Framework For Web Artisans   Whether you’re a solo developer or a 20 person team, Laravel is a breath of fresh air. Keep everyone in sync using Laravel’s […]

  • 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 […]