Skip to content

Instantly share code, notes, and snippets.

View tanjilahmed7's full-sized avatar

Tanjil Ahmed tanjilahmed7

View GitHub Profile
@tanjilahmed7
tanjilahmed7 / funcitons.php
Created December 24, 2014 11:10
Wedget in wp
<?php
function morderna_theme_wedgets(){
register_sidebar(array(
'name' => 'Footer Wedgets',
'id' => 'footer_wid',
'description' => 'Use this wedget for your side footer content ',
'before_widget' => '<div class="col-lg-3"><div class="widget footer_wedget">',
'after_widget' => '</div></div>',
'before_title' => '<h5 class="widgetheading">',
@tanjilahmed7
tanjilahmed7 / config.php
Last active October 8, 2015 19:50
PDO CRUD System
<?php
// Connection data (server_address, database, name, poassword)
$hostdb = 'localhost';
$namedb = 'test';
$userdb = 'root';
$passdb = '';