Genesis Simple Share - Manual Placement Examples. http://sridharkatakam.com/beautiful-social-sharing-icons-using-genesis-simple-share/
.site-header .share-buttons {
float: right;
margin-top: 20px;
}
.site-header .widget-area .share-buttons .sharrre {
text-align: left;
}
.single-post .share-buttons,
.page .share-buttons {
margin-bottom: 20px;
}
.home .share-buttons,
.archive .share-buttons {
margin-top: 20px;
}
<?php
//* Do NOT include the opening php tag
add_action( 'genesis_header', 'sk_simple_share' );
function sk_simple_share() {
if ( ! function_exists('genesis_share_icon_output') ) {
return;
}
if ( is_page() ) {
genesis_share_icon_output( 'buttons', array( 'twitter', 'facebook', 'googlePlus', 'linkedin' ) );
}
}
<?php
//* Do NOT include the opening php tag
add_action( 'genesis_header_right', 'sk_simple_share' );
function sk_simple_share() {
if ( ! function_exists('genesis_share_icon_output') ) {
return;
}
if ( is_page() ) {
genesis_share_icon_output( 'buttons', array( 'twitter', 'facebook', 'googlePlus', 'linkedin' ) );
}
}
<?php
//* Do NOT include the opening php tag
add_action( 'genesis_before_entry', 'sk_simple_share' );
function sk_simple_share() {
if ( ! function_exists('genesis_share_icon_output') ) {
return;
}
if ( is_singular( array( 'page', 'post' ) ) ) {
genesis_share_icon_output( 'buttons', array( 'twitter', 'facebook', 'googlePlus', 'linkedin' ) );
}
}
<?php
//* Do NOT include the opening php tag
add_action( 'genesis_entry_footer', 'sk_simple_share' );
function sk_simple_share() {
if ( ! function_exists('genesis_share_icon_output') ) {
return;
}
if ( is_home() || is_archive() ) {
genesis_share_icon_output( 'buttons', array( 'googlePlus', 'facebook', 'twitter', 'pinterest', 'linkedin', 'stumbleupon' ) );
}
}