I'm very new to wordpress. I'm developing a wordpress theme and using social share button plugin to share the post on social networking websites. Now all the social buttons are shown just below the post content. but I want them to show on a custom position in the post div.
the plugin button are shown using the following piece of code:
add_filter('the_content', 'ssb_display');
This code shows the social share buttons below post contents but I want them to show on another position in the same post div. How can I do this. Please don't give negative to my question as I'm newbie in wordpress.
Actually i want to define my own filter hook in wordpress then add_filter to that hook.
thanks.