Basic WordPress Functions

Everybody wants to make wordpress theme and like to have their own blog. Below are some basic wordpress function which can help to make basic theme for wordpress. 1) <?php bloginfo(‘stylesheet_directory’); ?> This wordpress function returns your active theme path. Like you have a theme by the name of  ”demotheme”. It will return: http://domain-name.com/wp-content/themes/demotheme 2) <?php echo [...]


Feel Our India : Indian handicraft Store

Feelourindia, India’s first of its kind handicraft online store for some of the very rare and exotic handmade and carved decorative articles. The rich traditional handiwork materials are the identity of India’s culture. From very ancient times, these handicraft articles have been used for decorative and utility purposes. And now, Feelourindia gives you the best [...]


How to get sub category list for specific category in magento

Below is the code to get sub categories list from specific category in magento. For example, if we make a category by name “brand” (fro example id is 35) and we want to show all the subcategory list as select dropdown. So we can use below code: <select style=”font-size:11px;” id=”select-manufacturer” onchange= “window.location.href=this.value”> <option value=”#” selected=”selected”>—-Select [...]