I'm looking for a way to add some content to the top of the sidebar when it get's loaded.
I've tried hooking onto the get_sidebar action as referenced here, but it seems to override the sidebar call and load my function instead? Is there a better solution to doing this beside creating widgets? I'd like to avoid that if possible, but I'm not totally against the idea, a hook would be best :)
Here's what my hook looks like:
add_action('get_sidebar', 'social_links');
Note: the function called is just spitting a list of social media links, nothing too fancy...
(Running latest version (3.1) on a MAMP server locally)

dynamic_sidebaraction, have you tried that? – t31os Mar 20 '11 at 12:08