I just updated my tabbed widget plugin and now its broken!
I created my own theme from scratch and had it working (after tweeking it ) then i updated the plugin without backing up my old version and now your plugin doesnt work please help, I have read through your comments and my functions.php looks like this :
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name'=>'one',
'before_widget' => '<li id="%1$s" class="%2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>'
));
?><?php
function aa_userlist_add_link_to_all( $template ) {
$url_link = 'http://the5thpocket.co.uk/disciples';
$text = 'View all';
$template = '<div class="author-list">{users} <div class="all_bloggers_link"><a href="http://the5thpocket.co.uk/disciples">' . $text . '</a></div></div>';
return $template;
}
add_filter('aa_userlist_template', 'aa_userlist_add_link_to_all');
?>
please help!