Categories
English Wordpress

How add options to your WordPress 2.7 dashboard widgets

Well, in this article, I assume you have read the WP Engineer’s excellent post Add WordPress Dashboard Widgets, because his code will be our start point.

So, we have this code:


// Load up the localization file if we're using WordPress in a different language
// Place it in this plugin's folder and name it "MainFunction-[value in wp-config].mo"
load_plugin_textdomain( 'MainFunction', '/wp-content/plugins/MainFunction' );

/**
 * Content of Dashboard-Widget
 */
function MainFunction() {
	echo 'Test Add Dashboard-Widget';
}
 
/**
 * add Dashboard Widget via function wp_add_dashboard_widget()
 */
function MainFunction_Init() {
	wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction' );
}
 
/**
 * use hook, to integrate new widget
 */
add_action('wp_dashboard_setup', 'MainFunction_Init');

OK, now, remenber the wp_add_dashboard_widget function?

function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null )

The $control_callback parameter (obviously optional) is our main target. It gives the ‘Configure’ option to our spiffy widget.
So, we need to add a 4th parameter to wp_add_dashboard_widget:

wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction', 'MainFunction_Setup');

The MainFunction_Setup function handles two things: the options (set the default options, recolect new values, etc) and the option’s presentation (i.e. the HTML part)

So, here goes the code:


function MainFunction_Options() {
	$defaults = array( 'items' => 5, 'boolean' => 1);
	if ( ( !$options = get_option( 'MainFunction' ) ) || !is_array($options) )
		$options = array();
	return array_merge( $defaults, $options );
}

function MainFunction_Setup() {

	$options = MainFunction_Options();


	if ( 'post' == strtolower($_SERVER['REQUEST_METHOD']) && isset( $_POST['widget_id'] ) && 'MainFunction' == $_POST['widget_id'] ) {
		foreach ( array( 'items', 'boolean' ) as $key )
				$options[$key] = $_POST[$key];
		update_option( 'MainFunction', $options );
	}
		
?>
	

As you can see, MainFunction_Options puts the default values (if necessary, of course) and MainFunction_Setup show the current values and let change them. You can merge this two, of course...

Now, we have to get the options and use them in our MainFunction function. Change MainFunction like that:

/**
 * Content of Dashboard-Widget
 */
function MainFunction() {

        $widget_options = MainFunction_Options();

	echo 'Test Add Dashboard-Widget
'; echo "You have selected $widget_options['items'] items
"; echo "boolean is $widget_options['boolean']
"; }

The complete code here:

';
	echo "You have selected $widget_options['items'] items
"; echo "boolean is $widget_options['boolean']
"; } /** * add Dashboard Widget via function wp_add_dashboard_widget() */ function MainFunction_Init() { wp_add_dashboard_widget( 'MainFunction', __( 'MainFunction Widget Title' ), 'MainFunction' , 'MainFunction_Setup' ); } function MainFunction_Options() { $defaults = array( 'items' => 5, 'boolean' => 1); if ( ( !$options = get_option( 'MainFunction' ) ) || !is_array($options) ) $options = array(); return array_merge( $defaults, $options ); } function MainFunction_Setup() { $options = MainFunction_Options(); if ( 'post' == strtolower($_SERVER['REQUEST_METHOD']) && isset( $_POST['widget_id'] ) && 'MainFunction' == $_POST['widget_id'] ) { foreach ( array( 'items', 'boolean' ) as $key ) $options[$key] = $_POST[$key]; update_option( 'MainFunction', $options ); } ?>

You can view a PHPS version (without PHP crippled tags) here.

536 replies on “How add options to your WordPress 2.7 dashboard widgets”

Hey there! Quick question that’s completely off topic.
Do you know how to make your site mobile friendly?
My website looks weird when viewing from my iphone4.

I’m trying to find a theme or plugin that might be able to fix this problem.

If you have any recommendations, please share.
Appreciate it!

Hey! Do you use Twitter? I’d like to follow you if that would be ok.
I’m absolutely enjoying your blog and look forward to new updates.

Right now it appears like WordPress is the top blogging platform
available right now. (from what I’ve read) Is that what you’re using on your blog?

I am curious to find out what blog system you have been utilizing?
I’m having some minor security issues with my latest website and I would like to find something more risk-free.
Do you have any solutions?

My partner and I stumbled over here coming from a different page and thought I may as well check things out.

I like what I see so now i am following you. Look forward to
looking over your web page for a second time.

I have to thank you for the efforts you have put in penning this website.

I really hope to view the same high-grade content
from you in the future as well. In fact, your creative writing abilities has inspired me to get my
own, personal site now 😉

You actually make it appear really easy together with your presentation but I in finding this matter to be actually one
thing which I feel I would never understand.
It seems too complicated and very huge for me. I’m looking forward in your next submit, I’ll attempt to get the
dangle of it!

Saya akan segera ambil rss Anda karena saya tidak bisa
Saya telah berselancar online lebih dari
tiga jam hari-hari ini , belum Saya sama sekali menemukan artikel menarik seperti milik Anda.
It is pretty value enough untuk saya. Menurut pendapat saya , jika semua pemilik situs
web dan blogger membuat bagus konten seperti Anda mungkin did, internet akan lebih banyak membantu dari sebelumnya.

my web page … Joker028 login; gameaco.com,

Wonderful items from you, man. I have remember your stuff prior to and you’re simply too magnificent.
I really like what you have obtained here, really
like what you’re stating and the way in which you say it.
You are making it entertaining and you continue
to care for to stay it smart. I can not wait to read much more from you.
This is really a terrific web site.

My blog post: http://www.craksracing.com/modules.php?name=Your_Account&op=userinfo&username=TempleShavonne

I have Ьeеn surfing online greater than three hours thеse dayѕ, yeet I bby no means found
anyy interesting artichle ⅼike yours. It іs lovely value sufficient for me.
In my opinion, if all website owners and bloggerѕ made excellent content matefiaⅼ
as you did, the web shall ƅe much mofe helpful than ever before. https://www.no5hair.co.uk/bella/

Hey just wanted to give you a quick heads up. The words in your article seem to be running off
the screen in Internet explorer. I’m not sure if this is a formatting issue or something to
do with internet browser compatibility but I figured I’d post to let you know.

The design and style look great though! Hope you get the issue solved soon. Kudos

Quality articles is the crucial to be a focus for the
viewers to go to see the web page, that’s what this web site is
providing.

Hey! I could have sworn I’ve been to this site before but after
reading through some of the post I realized it’s new to me.
Anyhow, I’m definitely glad I found it and I’ll be book-marking and checking back often!

You actually make it appear really easy with your presentation however
I to find this matter to be actually something that I think I might
never understand. It seems too complicated and extremely broad for me.
I am looking ahead for your subsequent publish, I will attempt to get the dangle of it!

Excellent post. I was checking constantly this blog and I am impressed!
Extremely useful info specifically the last part 🙂 I care for such information much.
I was seeking this particular info for a long time.
Thank you and best of luck.

That is really attention-grabbing, You’re an overly
skilled blogger. I have joined your feed and look ahead to in the hunt for extra of your wonderful post.
Also, I’ve shared your website in my social networks

What’s Taking place i am new to this, I stumbled upon this I’ve found
It absolutely useful and it has aided me out loads.
I hope to give a contribution & assist other customers like its aided me.

Good job.

That is a good tip especially to those new to the blogosphere.
Short but very precise information… Thanks
for sharing this one. A must read article!

It is not my first time to visit this web site, i am browsing this site dailly and get good data from here all the time.

Great beat ! I would like to apprentice while you amend your site,
how could i subscribe for a blog site? The account aided me a acceptable deal.
I had been tiny bit acquainted of this your broadcast offered bright clear concept

Howdy just wanted to give you a quick heads up. The words in your content seem to be running
off the screen in Chrome. I’m not sure if this is a format issue or something to do with web browser
compatibility but I thought I’d post to let you know. The design look great though!
Hope you get the issue solved soon. Cheers

I was honored to obtain a call from a friend as he observed the important points shared
on your own site. Examining your blog article is a real fantastic experience.
Thank you for thinking of readers at all like me, and
I hope for you the best of success being a professional in this surface area.

Also visit my web page http://muskiefool.com

I don’t even know how I stopped up here, however I believed this
post used to be good. I do not understand who you’re but certainly you’re going to a famous blogger if you
happen to aren’t already. Cheers!

This design is incredible! You certainly know how to keep a reader amused.
Between your wit and your videos, I was almost moved to start my own blog
(well, almost…HaHa!) Great job. I really enjoyed
what you had to say, and more than that, how you presented it.
Too cool!

I have been exploring for a little bit for any high-quality articles
or blog posts on this kind of area . Exploring in Yahoo I ultimately stumbled upon this site.
Studying this information So i’m happy to show that
I’ve an incredibly excellent uncanny feeling I found out just what I needed.
I most indisputably will make certain to do not forget this web site
and give it a look regularly.

Here is my homepage … https://bettyjostarke.net/ways-increase-your-libido

Does your site have a contact page? I’m having problems locating it but, I’d like
to send you an e-mail. I’ve got some recommendations for your blog you might be interested in hearing.
Either way, great site and I look forward to seeing it
develop over time.

my web blog … http://litdevelopments.com/devseo/index.php?PHPSESSID=e6166f48f4f7e362f98fab50401f3577&action=profile;u=149428

Unquestionably imagine that that you said. Your favourite reason seemed to be at the web the simplest
thing to consider of. I say to you, I certainly get annoyed while folks
consider issues that they plainly do not realize about.
You controlled to hit the nail upon the top as well as outlined out the whole thing with no need side effect ,
folks can take a signal. Will likely be back to get more.
Thanks!

Also visit my page; returngain.com

Does your website have a contact page? I’m having problems locating it but, I’d like to shoot you an email.

I’ve got some suggestions for your blog you might be interested in hearing.
Either way, great site and I look forward to seeing it improve over time.

I want to to thank you for this excellent read!! I definitely loved every
bit of it. I have got you saved as a favorite to look at new stuff you post…

I like the helpful info you provide for your articles.
I’ll bookmark your blog and check once more right here frequently.
I’m fairly certain I’ll be told lots of new stuff right right
here! Best of luck for the following!

Comments are closed.