Page is a not externally linkable
- Code, Content, and Presentation
-- WordPress
---- Social Sharing on WordPress


lorax - 11:30 am on Jun 3, 2011 (gmt 0)


Hey Roger,
Looks are subjective but can be packaged anyway you'd like. Typically SM icons are grouped and stuck in a sidebar, header, or footer area that repeats on all pages. Of course they don't have to.

The loading part is relatively easy if you know enough about coding. You can modify your theme to load the scripts below the content. Look for the functions.php file under the theme. Sometimes themes create a special custom functions file. The Thesis Theme uses custom_functions.php (found under /custom/.

Example modification:


// SM Scripts
function sm_scripts() {
?>
<script type="text/javascript" src="pathtoscriptsource"></script>
<?php
}
}
add_action('wp_footer', 'sm_scripts', 5);


For more reading:
[codex.wordpress.org...]
[codex.wordpress.org...]


Thread source:: http://www.webmasterworld.com/wordpress/4321224.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com