Changeset 1846820
- Timestamp:
- 03/26/2018 08:23:26 AM (8 years ago)
- Location:
- acf-bootstrap-button/trunk
- Files:
-
- 2 edited
-
acf-bbutton.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acf-bootstrap-button/trunk/acf-bbutton.php
r1846784 r1846820 5 5 * Plugin URI: https://wordpress.org/plugins/acf-bootstrap-button/ 6 6 * Description: Add a field to create a Bootstrap Button for the popular Advanced Custom Fields plugin, with internal or external link. 7 * Version: 1.0. 67 * Version: 1.0.7 8 8 * Author: teakor 9 9 * Author URI: … … 63 63 * @type function 64 64 * @date 17/02/2016 65 * @since 1.0. 665 * @since 1.0.7 66 66 * 67 67 * @param $version (int) major ACF version. Defaults to false … … 69 69 */ 70 70 71 function include_field( $version = 4 ) { 71 function include_field( $version = false) { 72 73 if( !$version ) $version = 4; 72 74 73 75 // load textdomain 74 76 load_plugin_textdomain( 'acf-bootstrap-button', false, plugin_basename( dirname( __FILE__ ) ) . '/lang' ); 75 76 77 77 78 // include 78 79 include_once('fields/class-acf-field-bbutton-v' . $version . '.php'); -
acf-bootstrap-button/trunk/readme.txt
r1846784 r1846820 4 4 Requires at least: 4.5.0 5 5 Tested up to: 4.9.4 6 Stable tag: 1.0. 66 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 54 54 55 55 == Changelog == 56 = 1.0.7 = 57 * Bug Fix ACF directives 58 56 59 = 1.0.6 = 57 60 * Bug Fix … … 82 85 83 86 == Upgrade Notice == 84 = 1.0. 6=85 * Bug Fix 87 = 1.0.7 = 88 * Bug Fix ACF directives 86 89 87 90 = 1.0.5 =
Note: See TracChangeset
for help on using the changeset viewer.