I'm new to the Wordpress plugin and widget APIs, but I'm sure this is possible.
I'd like to make a plugin or widget that would create links to other posts or external sites based on certain keywords/tags in the content of the given page/post.
Is this possible?
For example, if a term is in all-caps, link to the Wiktionary definition; i...
How to create new wordpress widgets for my themes ?
...
I'm trying to create a widget for Wordpress. The widget displays the records from the database.
function.php in themes/vigilance/ :
if (function_exists('register_sidebar_widget'))
{
register_sidebar_widget('TwiMoldova','twimoldova');
}
function twimoldova()
{
include('widgets/twimoldova.php');
}
themes/vigilance/widgets/twimo...
Hi gurus,
I was wondering if anybody know hows to modify the existing category widget to only display the categories within the selected parent category.
Example:
If my categories are structured like:
Computers
Laptops
Desktops
Software
Electronics
Cameras
Audio/Video
If a somebody is viewing posts in the Computers category I wo...