-
-
Save tylerdigital/418e693f9af7a3707dba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'soliloquy_output_slide', 'tgm_soliloquy_custom_html', 10, 4 ); | |
function tgm_soliloquy_custom_html( $html, $id, $image, $data ) { | |
// If the ID doesn't match the one we want to modify, return the default HTML output. Change 324 to your slider ID. | |
$slider_id = $data['id']; | |
if ( '1937' != $slider_id ) return $html; | |
ob_start(); ?> | |
<span class="social-m"> | |
<?php $summary = get_field('short_description');?> | |
<a onClick="window.open('http://www.facebook.com/sharer.php?s=100&p[title]=<?php the_title();?>&p[summary]=<?php echo $summary;?>&p[url]=<?php the_permalink();?>&&p[images][0]=<?php echo $image['sizes']['recipe-list'];?>','sharer','toolbar=0,status=0,width=548,height=325');" href="javascript: void(0)"><img class="facebook fade" src="<?php bloginfo('template_directory');?>/images/share-fb.png" width="20" height="20" alt="Share this message on Facebook" /></a> | |
<a onclick="window.open(this.href);return false;" href="http://pinterest.com/pin/create/button/?url=<?php the_permalink();?>&media=<?php echo $image['sizes']['recipe-list']; ?>&description=<?php the_field('recipe_description'); ?>" class="pin-it-button" count-layout="none"><img border="0" src="<?php bloginfo('template_directory');?>/images/share-pnt.png" title="Pin It" /></a> | |
<a href="http://twitter.com/share?text=<?php the_field('recipe_description'); ?>&url=<?php the_permalink();?>" target="_blank"><img src="<?php bloginfo('template_directory');?>/images/share-tw.png" width="20" height="20" alt="" /></a> | |
</span> | |
<?php | |
$html .= ob_get_contents(); | |
ob_end_clean(); | |
return $html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment