Skip to content

Instantly share code, notes, and snippets.

View tysonchamp's full-sized avatar
:octocat:
Nerd

Soumya Mondal tysonchamp

:octocat:
Nerd
View GitHub Profile
@tysonchamp
tysonchamp / wp-config-part.php
Created August 26, 2015 07:40
Define home url and site url in wp-config.php
define('WP_HOME','http://127.0.0.1/chowringhee');
define('WP_SITEURL','http://127.0.0.1/chowringhee');
# get childs of top menu
$children = get_posts(array('post_type' => 'nav_menu_item', 'nopaging' => true, 'numberposts' => 1, 'meta_key' => '_menu_item_menu_item_parent', 'meta_value' => $item->ID));