Changeset 1566332
- Timestamp:
- 01/02/2017 02:24:03 PM (9 years ago)
- Location:
- metal-social-share
- Files:
-
- 1 added
- 3 edited
-
assets/logo.png (added)
-
trunk/css/style.css (modified) (1 diff)
-
trunk/metal_share.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
metal-social-share/trunk/css/style.css
r1560449 r1566332 40 40 height: 30px !important; 41 41 } 42 43 .share-button ul li a { 44 border-bottom: none !important; 45 } -
metal-social-share/trunk/metal_share.php
r1560449 r1566332 21 21 22 22 23 add_ action( 'the_content' , 'fancymetalshare');23 add_filter( 'the_content' , 'fancymetalshare'); 24 24 25 25 26 26 27 function fancymetalshare ( ) {27 function fancymetalshare ($fancycontent) { 28 28 ?> 29 29 <?php echo $fancycontent; ?> 30 30 <div class="button-area"> 31 31 <div class="share-button"> 32 32 33 33 <ul> 34 <li><a href="http://facebook.com/share.php?u=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . ' /metalshare/images/facebook.png'; ?>" alt="Facebook" /></a></li>34 <li><a href="http://facebook.com/share.php?u=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . 'metalshare/images/facebook.png'; ?>" alt="Facebook" /></a></li> 35 35 36 <li><a href="https://twitter.com/share?text=<?php the_title();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . ' /metalshare/images/twitter.png'; ?>" alt="Twitter" /></a></li>36 <li><a href="https://twitter.com/share?text=<?php the_title();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . 'metalshare/images/twitter.png'; ?>" alt="Twitter" /></a></li> 37 37 38 <li><a href="https://plus.google.com/share?url=<?php the_permalink(); ?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . ' /metalshare/images/google-plus.png'; ?>" alt="Google+" /></a></li>38 <li><a href="https://plus.google.com/share?url=<?php the_permalink(); ?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . 'metalshare/images/google-plus.png'; ?>" alt="Google+" /></a></li> 39 39 40 40 41 <li><a href="https://www.linkedin.com/cws/share?url=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . ' /metalshare/images/linkedin.png'; ?>" alt="Linkedin" /></a></li>41 <li><a href="https://www.linkedin.com/cws/share?url=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . 'metalshare/images/linkedin.png'; ?>" alt="Linkedin" /></a></li> 42 42 43 <li><a href="http://pinterest.com/pin/create/button/?url=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . ' /metalshare/images/pintrest.png'; ?>" alt="Pintrest" /></a></li>43 <li><a href="http://pinterest.com/pin/create/button/?url=<?php the_permalink();?>" target="_blank"><img src="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . 'metalshare/images/pintrest.png'; ?>" alt="Pintrest" /></a></li> 44 44 45 45 -
metal-social-share/trunk/readme.txt
r1560451 r1566332 29 29 30 30 1. This screen shot description corresponds to screenshot-1.(png|jpg|jpeg|gif). 31 32 33 == Changelog == 34 35 = 2.0 = 36 * Bug Fixed.
Note: See TracChangeset
for help on using the changeset viewer.