Create a Wordpress widget

This is a discussion on "Create a Wordpress widget" within the PHP Forum section. This forum, and the thread "Create a Wordpress widget are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 9th, 2007, 12:45
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 1,011
Blog Entries: 2
Thanks: 5
Thanked 23 Times in 20 Posts
Send a message via Skype™ to Aso
Create a Wordpress widget

So I'm starting to get to grips with Wordpress, and the flexibility is simply WOW.

I've found a slice of code for generating a list of pages, based on the page you are on (only parent and child of the current parent is shown)

PHP: Select all

<?php
if($post->post_parent)
$children wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else
$children wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if (
$children) { ?>
<ul>
<?php echo $children?>
</ul>
<?php ?>
But I'm stuck on how to integrate this into my sidebar. I'm using dynamic sidebars, so my guess is create this as a widget, then just drag and drop it from my WP admin menu - but how do I create a widget?

Many thanks

Alex
Last Blog Entry: The Google Misconception (Feb 3rd, 2008)
Reply With Quote

  #2 (permalink)  
Old Dec 9th, 2007, 21:27
simonb's Avatar
Blog Moderator

Join Date: Dec 2006
Location: Norwich
Posts: 675
Blog Entries: 4
Thanks: 4
Thanked 2 Times in 2 Posts
Send a message via Skype™ to simonb
Re: Create a Wordpress widget

try in the theme folder. sidebar.php
Last Blog Entry: Whats your Niche? (Jun 10th, 2008)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
putting a widget in CSS kobesunset Starting Out 5 Jun 8th, 2008 19:22
Weather WIdget Jack Franklin Webforumz Cafe 6 Mar 26th, 2008 17:14
Web-Widget Giant Free Web Site Critique 5 Feb 29th, 2008 06:16
[SOLVED] Spry password confirmation widget in DW CS3 grandadbob Scripts and Online Services 5 Nov 30th, 2007 18:34
Digg widget editting jahphill JavaScript Forum 6 Oct 27th, 2007 21:01


All times are GMT. The time now is 02:09.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43