This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*===================================== | |
Comment Template CSS | |
========================================*/ | |
.comments-area { | |
margin-top: 40px; | |
} | |
.comments-area h2.comments-title { | |
font-size: 25px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*===================================== | |
Widget CSS | |
=======================================*/ | |
.widget-area ul { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying 404 pages (not found) | |
* | |
* @link https://codex.wordpress.org/Creating_an_Error_404_Page | |
* | |
* @package WordPress | |
* @subpackage MY_Theme | |
* @since 1.0 | |
* @version 1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function stock_humayunbd_page_metabox($options){ | |
$options = array(); // remove old options | |
// Logo Setting | |
$options[] = array( | |
'name' => 'stock_humayunbd_logo_settings', | |
'title' => esc_html__('Logo Settings','stock-humayunbd'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## table of contents: | |
===================== | |
1. Basic Php | |
2. Install WordPress in live server | |
2.1. WordPress Dashboard Introduction | |
3. Introduce about IDE & WordPress template hierarchy | |
4. Introducing about Visual Composer | |
4.1. Visual Composer academy site | |
4.2. Use Visual Composer Element/Addons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*================================== | |
Basic Introduction of PHP | |
====================================*/ | |
** PHP - Hypertext Preprocessor | |
** Server side scripting language | |
** First Released Date : 1994 | |
** Created By: Rasmus Lerdorf | |
** Most CMS used PHP - | |
* WordPress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some Awesome Designed Web Address: | |
=================================== | |
1. http://codecorns.com/downloads/boston/ (for scroll to top) | |
2. https://nicescroll.areaaperta.com/ (for nicescroll) | |
3. www.maxthon.com/hd/superbrowserfb/(for slider) | |
4. https://www.netlify.com/blogs/ (for box hover) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
** Some Awsome Website Using With Animation: | |
=========================================== | |
1. https://waaark.com/ | |
2. http://www.species-in-pieces.com/ | |
** Improve the Payment Experience With Animations: | |
================================================== | |
It can be helping the user better understand what’s going on and how to use your product most effectively. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
WordPress Template Hierarchy (as of WordPress 4.9) | |
is_404() -------------------------------------------------------------------------------------------------> 404.php | |
is_search() ----------------------------------------------------------------------------------------------> search.php | |
is_front_page() ------------------------------------------------------------------------------------------> front-page.php | |
is_home() ------------------------------------------------------------------------------------------------> home.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying 404 pages (not found) | |
* | |
* @link https://codex.wordpress.org/Creating_an_Error_404_Page | |
* | |
* @package WordPress | |
* @subpackage MY_Theme | |
* @since 1.0 | |
* @version 1.0 |