Tuesday, 1 December 2015

Chhand Part-1, Gujarati Grammer (ગુજરાતી વ્યાકરણ - છંદ - ભાગ ૧)


આ વિડીયોમાં આપણે છંદ તેનો ઇતિહાસ અને છંદને લગતા પારિભાષિક શબ્દો વિશે માહિતી મેળવીશું. https://www.youtube.com/watch?v=rxptx6nFBbE

Saturday, 8 August 2015

WordPress: Bitcoin Address Validation (Field Validation) with Gravity Form

The piece of code used in this video can be found here.
http://rosettacode.org/wiki/Bitcoin/address_validation#PHP

Wordpress: Add Custom Taxonomy Filter at WordPress Admin Side/ Wordpress Backend

In this video we will add custom taxonomy dropdown filter at the backend of WordPress(Admin Interface) Resource of the file that we used in this video.
https://gist.github.com/bainternet/4722496

Wordpress: Allow HTMLtags in post category, tag or taxonomy Description in WordPres




Important code used in this video

// allow html in category and taxonomy descriptions
remove_filter( 'pre_term_description', 'wp_filter_kses' );
remove_filter( 'pre_link_description', 'wp_filter_kses' );
remove_filter( 'pre_link_notes', 'wp_filter_kses' );
remove_filter( 'term_description', 'wp_kses_data' );

WordPress: Allow to Add Link in WordPress Widget Title


You might have noticed that wordpress widget title do not have link. But what if we need to add it? Well! This video contains the answer :) for code snippet used in this video please visit below link. http://wp-lovers.com/allow-to-add-link-and-wordpress-widget-title/