-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add post-search-field search feature. Closes #7
- Loading branch information
1 parent
06aa5a5
commit ffd808f
Showing
7 changed files
with
662 additions
and
153 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* Plugin Name: CMB2 Field Type: Attached Posts | ||
* Plugin URI: https://github.com/WebDevStudios/cmb2-attached-posts | ||
* Description: Attached posts field type for CMB2. | ||
* Version: 1.2.4 | ||
* Version: 1.2.5 | ||
* Author: WebDevStudios | ||
* Author URI: http://webdevstudios.com | ||
* License: GPLv2+ | ||
|
@@ -19,7 +19,7 @@ | |
* @author WebDevStudios <[email protected]> | ||
* @copyright 2016 WebDevStudios <[email protected]> | ||
* @license GPL-2.0+ | ||
* @version 1.2.4 | ||
* @version 1.2.5 | ||
* @link https://github.com/WebDevStudios/cmb2-attached-posts | ||
* @since 1.2.3 | ||
*/ | ||
|
@@ -46,7 +46,7 @@ | |
* Loader versioning: http://jtsternberg.github.io/wp-lib-loader/ | ||
*/ | ||
|
||
if ( ! class_exists( 'WDS_CMB2_Attached_Posts_Field_124', false ) ) { | ||
if ( ! class_exists( 'WDS_CMB2_Attached_Posts_Field_125', false ) ) { | ||
|
||
/** | ||
* Versioned loader class-name | ||
|
@@ -57,18 +57,18 @@ | |
* @package WDS_CMB2_Attached_Posts_Field | ||
* @author WebDevStudios <[email protected]> | ||
* @license GPL-2.0+ | ||
* @version 1.2.4 | ||
* @version 1.2.5 | ||
* @link https://github.com/WebDevStudios/cmb2-attached-posts | ||
* @since 1.2.3 | ||
*/ | ||
class WDS_CMB2_Attached_Posts_Field_124 { | ||
class WDS_CMB2_Attached_Posts_Field_125 { | ||
|
||
/** | ||
* WDS_CMB2_Attached_Posts_Field version number | ||
* @var string | ||
* @since 1.2.3 | ||
*/ | ||
const VERSION = '1.2.4'; | ||
const VERSION = '1.2.5'; | ||
|
||
/** | ||
* Current version hook priority. | ||
|
@@ -77,7 +77,7 @@ class WDS_CMB2_Attached_Posts_Field_124 { | |
* @var int | ||
* @since 1.2.3 | ||
*/ | ||
const PRIORITY = 9998; | ||
const PRIORITY = 9997; | ||
|
||
/** | ||
* Starts the version checking process. | ||
|
@@ -155,5 +155,5 @@ public function include_lib() { | |
} | ||
|
||
// Kick it off. | ||
new WDS_CMB2_Attached_Posts_Field_124; | ||
new WDS_CMB2_Attached_Posts_Field_125; | ||
} |
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
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
Oops, something went wrong.