Skip to content

Instantly share code, notes, and snippets.

View tanjimahmmed's full-sized avatar
🎯
Focusing

Md Tanjim Ahmmed tanjimahmmed

🎯
Focusing
View GitHub Profile
@tanjimahmmed
tanjimahmmed / function.php
Last active February 26, 2020 01:46
theme support
<?php
require_once(get_theme_file_path("/inc/tgm.php"));
require_once(get_theme_file_path("/inc/attachments.php"));
if (site_url()=="http://127.0.0.1/demo.tanjim.com"){
define("VERSION", time());
}else{
define("VERSION",wp_get_theme()->get("version"));
}
@tanjimahmmed
tanjimahmmed / wp stylesheet
Created February 22, 2020 06:53
stylesheet
wp comment must :
====================================
/*
Theme Name: Philosophy
Theme URI:
AUTHOR: MD Tanjim Ahmmed
AUTHOR URI: https://tanjimahmmed.github.io/tanjim-portfolio/
Description: Philosophy by colorlib
Version: 1.0
License: GNU General Public License v2 or later
@tanjimahmmed
tanjimahmmed / Modal Video Option
Created December 13, 2019 14:26
Modal Video Option
// -- modal video -- //
$(".play_icon").modalVideo();
$(".play_icon").on('click', function(){
return false;
});
@tanjimahmmed
tanjimahmmed / counter option
Created December 13, 2019 14:16
Counter option
// -- counter -- //
$(".counter_number span").counterUp({
delay : 10,
time : 1000,
});