Recent Updates RSS Toggle Comment Threads | Keyboard Shortcuts
-
Rakshit Thakker
Gravity Forms PDF
Adds PDF rendering to the Gravity Forms Admin Page.
More @ http://wordpress.org/extend/plugins/gravity-forms-pdf/
-
Ankit
Hello Everyone,
everyone of us know about built-in and custom widget, but there may condition arise that you may want to display same form or any other data as that of widget on a page or any other custom template.
For sake of this we require to get $instance of that widget (which is nothing but the settings data of widget), so there is simple solution for this as follow:Everything in wordpress is stored in database, so as widget settings will also be there we just have to retrieve it from wp_option table with help of get_option function.
Example:
step1. get all settings data.
$instincts = get_option(“your_widget_name_here”);step2. now $instincts contain all settings data in array as follows.
Array
(
[2] => Array
(
[title] => SEARCH LUXURY PROPERTIES
[min_price] => 10000
[c_min_price] => 10
[o_min_price] => 10000
[max_price] => 60000
[c_max_price] => 7
[o_max_price] => 10000
)[_multiwidget] => 1
)step 3. take all settings data in your single array variable.
foreach($instincts as $key=>$val){
if(is_array($val)){
$instances['c_min_price'] = trim($val['c_min_price']);
$instances['o_min_price']=trim($val['o_min_price']);
$instances['max_price'] = $val['max_price'];
$instances['c_max_price'] = $val['c_max_price'];
$instances['o_max_price']=$val['o_max_price'];
}
}
(Above is merely a random example
so donn worry :p )at this point u will have all widget setting data in $instances variable, so now u can play with it however you want even out of sidebar’s ground.
Hope this will be useful to you.
Thanks. -
Abhimanyu
gMaps – Google maps jQuery plugin
A nice jQuery plugin worth trying.
-
Rahul Bansal
-
Rahul Bansal
Google Font Previewer for Chrome
Must use Google Chrome Add-on for Developers/Designers.
https://chrome.google.com/webstore/detail/engndlnldodigdjamndkplafgmkkencc
-
Tapan Bojja
Supereb CSS3 scroll effects.
Hey friends, go through the below link. It has different nice css3 scroll effect with stroll.js
-
Abhimanyu
Why wordPress comments feed returns “404 Page not found” error?
Refer @ http://jonathanpolansky.com/2009/03/wordpress-comments-feed-returns-404-page-not-found/