Changeset 650601
- Timestamp:
- 01/10/2013 08:43:39 AM (13 years ago)
- Location:
- boton-fixmedia/trunk
- Files:
-
- 2 edited
-
fixmedia.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boton-fixmedia/trunk/fixmedia.php
r627098 r650601 2 2 /* 3 3 Plugin Name: Botón Fixmedia 4 Version: 0. 54 Version: 0.6 5 5 Plugin URI: http://fixmedia.org 6 6 Description: Añade el botón de "fixear" a cada post del blog. … … 11 11 */ 12 12 13 add_filter('the_content',' add_button');14 function add_button($content) {13 add_filter('the_content','fixmedia_add_button'); 14 function fixmedia_add_button($content) { 15 15 $options = get_option('fixmedia_options'); 16 16 return $content . '<div class="fix_button_wrapper"> -
boton-fixmedia/trunk/readme.txt
r627104 r650601 4 4 Requires at least: 3.0 5 5 Tested up to: 3.4.2 6 Stable tag: 0. 56 Stable tag: 0.6 7 7 License: GPLv2 8 8 … … 32 32 == Changelog == 33 33 34 = 0.6 = 35 * Corregida incompatibilidad con algunos themes que ya usaban la función add_button() 34 36 = 0.5 = 35 37 * El botón ahora se añade en un div.fix_button_wrapper, por lo que se le pueden dar estilos a través de CSS
Note: See TracChangeset
for help on using the changeset viewer.