Skip to content

Instantly share code, notes, and snippets.

View milapdave's full-sized avatar

Milap Dave milapdave

View GitHub Profile
@humayunahmed8
humayunahmed8 / wp-comment-form-style.css
Created September 15, 2018 19:07
Comment form template CSS for WordPress
/*=====================================
Comment Template CSS
========================================*/
.comments-area {
margin-top: 40px;
}
.comments-area h2.comments-title {
font-size: 25px;
@humayunahmed8
humayunahmed8 / widget-css-for-wp.css
Created September 15, 2018 19:09
Widget CSS for WordPress
/*=====================================
Widget CSS
=======================================*/
.widget-area ul {
list-style: none;
margin: 0;
padding: 0;
}
@humayunahmed8
humayunahmed8 / 404.php
Last active November 11, 2022 10:26
Styled 404 error page example
<?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
@milapdave
milapdave / 1-logo-setting-metabox-option.php
Created September 20, 2022 06:30 — forked from humayunahmed8/1-logo-setting-metabox-option.php
Logo setting option using codestar framwork
<?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'),
## 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
@milapdave
milapdave / 1-basic-intro-of-php.txt
Created October 3, 2022 05:32 — forked from humayunahmed8/1-basic-intro-of-php.txt
Special Documentation about Basic PHP
/*==================================
Basic Introduction of PHP
====================================*/
** PHP - Hypertext Preprocessor
** Server side scripting language
** First Released Date : 1994
** Created By: Rasmus Lerdorf
** Most CMS used PHP -
* WordPress
@milapdave
milapdave / Awesome_web.txt
Created October 3, 2022 05:33 — forked from humayunahmed8/Awesome_web.txt
Some Awesome Designed Web Address
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)
@milapdave
milapdave / awesome-website.txt
Created October 3, 2022 05:33 — forked from humayunahmed8/awesome-website.txt
Some Awsome Website
** 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.
@milapdave
milapdave / wordpress-template-hierarchy.php
Created October 3, 2022 05:36 — forked from humayunahmed8/wordpress-template-hierarchy.php
WordPress Template Hierarchy (as of WordPress 4.9)
<?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
@milapdave
milapdave / 404.php
Last active November 11, 2022 10:38 — forked from humayunahmed8/404.php
Styled 404 error page example
<?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