Revision: 37779
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at December 17, 2010 01:02 by SalmanAbbas007
Initial Code
function get_widget_option($option_name){
$options = array_filter( get_option( $option_name ) );
unset( $options['_multiwidget'] );
foreach( $options as $key => $val ) {
$options = $options[$key];
}
return $options;
}
Initial URL
Initial Description
Initial Title
Get Widget Options for Wordpress
Initial Tags
php, wordpress
Initial Language
PHP