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
/*================================== | |
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
## 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
<?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
<?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
/*===================================== | |
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
/*===================================== | |
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
<?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
<?php | |
/** | |
* Short custom post type | |
*/ | |
function my_theme_custom_post() { | |
register_post_type( 'cpt', | |
array( | |
'labels' => array( |
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 | |
<div class="logo"> | |
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"> | |
<?php $logo_id = get_theme_mod('custom_logo'); ?> | |
<?php if(!empty($logo_id)) : the_custom_logo(); else : ?> | |
<h3><?php bloginfo( 'name' ); ?></h3> | |
<?php endif; ?> |