Archive

Posts Tagged ‘widget’

I’d like to post my Facebook status updates via a WordPress sidebar widget. How do I do it?

March 17th, 2011 3 comments

I have recently started hosting my own site using WordPress as a back-end. I would like my Facebook status updates to be posted to my sidebar automatically. I imagine I would need some sort of widget for this, but I’m having difficulty locating one. Any suggestions?

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Custom Dashboard Widget – WordPress

March 12th, 2011 No comments


enginemarketing.co.nz : This is a Training Video for our New WordPress Plugin called the Custom Dashboard Widget which allows you to place a Custom Dashboard Widget on the Dashboard of your WordPress Site. Enjoy.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

WordPress Tutorial – Use Text Widget to Customize Sidebar 2

November 29th, 2010 3 comments


This is PART TWO of the Intermediate level WordPress tutorial that shows how to use a text widget to customize a WordPress sidebar. To see the final product of the tutorial in the Business Blogging 101 website and the HTML code used in this example, go to mcbuzz.wordpress.com and search for “text widget”. Widgets are a very useful feature of most new WordPress themes. They allow you to add custom content to your sidebars with little or no knowledge of HTML or other code. The example I use in this tutorial shows how to create a custom text box with a short biographical note and part of that text is a link. In this PART TWO of the tutorial, I show how to insert an image into the same custom sidebar box, along with a LinkedIn profile “badge”. You can use these techniques to put whatever you want into your own WordPress sidebar.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How to add widget at foot

April 30th, 2009 1 comment

First , find the theme folder and open the file named functions.php

1
2
3
4
5
6
7
   if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
            'after_widget' => '</li>',
            'before_title' => '<h2 class="widgettitle">',
            'after_title' => '</h2>',
        ));

add the below code at this file’s bottom

1
2
3
4
5
6
7
8
9
10
    if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
            'after_widget' => '</li>',
            'before_title' => '<h2 class="widgettitle">',
            'after_title' => '</h2>',
        ));
    register_sidebar(array(
          'name' =>'subwidget',
   ));

then, add the below code at your foot.php

1
2
3
<div class="subwidget">
	<?php dynamic_sidebar(subwidget) ?>
</div>

OK now :-)

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Categories: WordPress Newbie Tags: , ,

Powered by Yahoo! Answers