Skip to content

Instantly share code, notes, and snippets.

View vermasachin's full-sized avatar

Sachin Verma vermasachin

View GitHub Profile
add_action('get_header','bitdoz_custom_homepage_sidebar');
function bitdoz_custom_homepage_sidebar() {
if ( is_front_page() ) {
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
add_action( 'genesis_sidebar', 'bitdoz_do_sidebar' );
}
}
function bitdoz_do_sidebar() {
genesis_widget_area( 'custom-homepage-sidebar' );
// Register new sidebar
genesis_register_sidebar( array(
'id' => 'custom-homepage-sidebar',
'name' => 'Custom Homepage Sidebar',
'description' => 'This is the sidebar for Homepage',
) );
@vermasachin
vermasachin / CustomSocialShareCSS
Last active January 1, 2016 02:59
Custom Social Share CSS
/**************
Custom Social Share Buttons
***************/
.social-sharer{
display: table;
}
.share-love
{
float:left;
width: 100px;
@vermasachin
vermasachin / CustomSocialShare
Created December 22, 2013 13:27
Custom Social Share
<?php if (is_single() ) { ?>
<div class="social-sharer">
<div class="share-love">
<center><div class="share-text"><i class="icon-share"></i> Share it!</div></center>
</div>
<div class="share-facebook">
<center><a href="http://www.facebook.com/share.php?u=<?php print(urlencode(get_permalink())); ?>&title=<?php print(urlencode(the_title())); ?>" target="_blank"><div class="share-text"><i class="icon-facebook"></i> Share on Facebook</div></a>
</div>
@vermasachin
vermasachin / FontAwesomeSocial
Created December 22, 2013 13:24
Font Awesome Social
<i class="icon-facebook"></i>
<i class="icon-twitter"></i>
<i class="icon-google-plus"></i>
@vermasachin
vermasachin / SocialShareGoogle
Created December 22, 2013 13:17
Social Share Google
https://plus.google.com/share?url=<?php print(urlencode(get_permalink())); ?>
@vermasachin
vermasachin / SocialShareTwitter
Created December 22, 2013 13:16
Social Share Twitter
http://twitter.com/home?status=<?php print(urlencode(the_title())); ?>+<?php print(urlencode(get_permalink())); ?>
@vermasachin
vermasachin / SocialShareFacebook
Created December 22, 2013 13:14
Social Share Facebook
http://www.facebook.com/share.php?u=<?php print(urlencode(get_permalink())); ?>&title=<?php print(urlencode(the_title())); ?>
@vermasachin
vermasachin / WordPressFunctionsURL
Created December 22, 2013 13:07
WordPress Functions URL
<?php print(urlencode(get_permalink())); ?>
@vermasachin
vermasachin / WordPressFunctionsTitle
Created December 22, 2013 13:06
WordPress Functions Title
<?php print(urlencode(the_title())); ?>