Changeset 1826280
- Timestamp:
- 02/21/2018 02:50:24 PM (8 years ago)
- File:
-
- 1 edited
-
book-now/trunk/book-now.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
book-now/trunk/book-now.php
r1826274 r1826280 2 2 /** 3 3 * @package Book_Now 4 * @version 1.4. 04 * @version 1.4.1 5 5 */ 6 6 /* … … 9 9 Description: This plugin adds a fixed call to action button to your site, with text and link to anywhere you want. 10 10 Author: RianGraphics 11 Version: 1.4. 011 Version: 1.4.1 12 12 Author URI: https://www.riangraphics.com/book-now/ 13 13 */ … … 39 39 add_action( 'add_meta_boxes', 'rg_meta_box_add' ); 40 40 function rg_meta_box_add() { 41 add_meta_box( 'my-meta-box-id', 'Book Now Options', 'rg_meta_box_bn', 'page', 'side', 'high' ); 41 $post_types = get_post_types( array('public' => true) ); 42 foreach($post_types as $post_typess) { 43 add_meta_box( 'my-meta-box-id', 'Book Now Options', 'rg_meta_box_bn', $post_typess, 'side', 'high' ); 44 } 42 45 } 43 46 function rg_meta_box_bn( $post ) {
Note: See TracChangeset
for help on using the changeset viewer.