Changeset 1854004
- Timestamp:
- 04/06/2018 10:39:20 AM (8 years ago)
- Location:
- ve-ads-manager
- Files:
-
- 5 added
- 3 edited
-
tags/1.2 (added)
-
tags/1.2/lib (added)
-
tags/1.2/lib/class.php (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/ve-ads-manager.php (added)
-
trunk/lib/class.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ve-ads-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ve-ads-manager/trunk/lib/class.php
r1558068 r1854004 8 8 $screens = get_option('ve_ads_page_type'); 9 9 foreach ( $screens as $screen ) { 10 echo $screen; 10 11 add_meta_box( 11 12 've-ads-meta-box', 12 13 __( 'Virtual Ads Manager', 'virtualemployee' ), 13 'show_ve_ads_m eta_box',14 'show_ve_ads_manager_meta_box', 14 15 $screen 15 16 ); … … 182 183 if(is_home() || is_front_page()) 183 184 { 184 $headbanner=get_option('ve_ads_home_header_val') ;185 $headbanner=get_option('ve_ads_home_header_val') ? get_option('ve_ads_home_header_val') : ''; 185 186 } 186 187 -
ve-ads-manager/trunk/readme.txt
r1620091 r1854004 1 1 === VE Ads Manager === 2 2 Contributors: virtualemployee 3 Donate link: 3 Donate link: 4 4 Tags: Ads Manager, Wordpress Ads, Ads, promotions Ads, WP Ads Manager 5 5 Requires at least: 4.0 6 Tested up to: 4. 7.37 Stable tag: 1. 16 Tested up to: 4.9.5 7 Stable tag: 1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.2 = 44 * Tested with latest version of wordpress is 4.9.5 45 * Optimized code 46 47 = 1.1 = 48 Second release with minor changes 49 43 50 = 1.0 = 44 51 First release -
ve-ads-manager/trunk/ve-ads-manager.php
r1620091 r1854004 4 4 Plugin URI: http://www.virtualemployee.com/ 5 5 Description: This plugin will help to manage your ads on your site. 6 Version: 1. 16 Version: 1.2 7 7 Author: virtualemployee 8 8 Author URI: http://www.virtualemployee.com … … 74 74 <tr valign="top"> 75 75 <th scope="row">Define default Ads for header section</th> 76 <td><textarea rows="5" cols="60" name="ve_ads_header_val" placeholder="Add default ads code here for head section"><?php echo get_option('ve_ads_header_val'); ?></textarea></td> 76 <td><textarea rows="5" cols="60" name="ve_ads_header_val" placeholder="Add default ads code here for head section"><?php echo get_option('ve_ads_header_val'); ?></textarea> 77 <br><i>Use <b>[ve_head_ads]</b> shortcode to add banner into header section</i></td> 77 78 </tr> 78 79 79 80 <tr valign="top"> 80 81 <th scope="row">Define default Ads for sidebar section </th> 81 <td><textarea rows="5" cols="60" name="ve_ads_sidebar_val" placeholder="Add default ads code here for sidebar section"><?php echo get_option('ve_ads_sidebar_val'); ?></textarea></td> 82 <td><textarea rows="5" cols="60" name="ve_ads_sidebar_val" placeholder="Add default ads code here for sidebar section"><?php echo get_option('ve_ads_sidebar_val'); ?></textarea> 83 <br><i>Use <b>[ve_sidebar_ads]</b> shortcode to add banner into sidebar </i></td> 82 84 </tr> 83 85 84 86 <tr valign="top"> 85 87 <th scope="row">Define default Ads for footer section</th> 86 <td><textarea rows="5" cols="60" name="ve_ads_footer_val" placeholder="Add default ads code here for footer section"><?php echo get_option('ve_ads_footer_val'); ?></textarea></td> 88 <td><textarea rows="5" cols="60" name="ve_ads_footer_val" placeholder="Add default ads code here for footer section"><?php echo get_option('ve_ads_footer_val'); ?></textarea> 89 <br><i>Use <b>[ve_footer_ads]</b> shortcode to add banner into footer section</i></td> 87 90 </tr> 88 91 <tr valign="top"> … … 97 100 <tr valign="top"> 98 101 <th scope="row">Define home page Ads for header section</th> 99 <td><textarea rows="5" cols="60" name="ve_ads_home_header_val" placeholder="Add home page ads code here for head section"><?php echo get_option('ve_ads_home_header_val'); ?></textarea></td> 102 <td><textarea rows="5" cols="60" name="ve_ads_home_header_val" placeholder="Add home page ads code here for head section"><?php echo get_option('ve_ads_home_header_val'); ?></textarea> 103 <br><i>Use <b>[ve_head_ads]</b> shortcode to add banner into home page header section</i></td> 100 104 </tr> 101 105 <tr valign="top"> 102 106 <th scope="row">Define home page Ads for footer section</th> 103 <td><textarea rows="5" cols="60" name="ve_ads_home_footer_val" placeholder="Add home page ads code here for footer section"><?php echo get_option('ve_ads_home_footer_val'); ?></textarea></td> 107 <td><textarea rows="5" cols="60" name="ve_ads_home_footer_val" placeholder="Add home page ads code here for footer section"><?php echo get_option('ve_ads_home_footer_val'); ?></textarea> 108 <br><i>Use <b>[ve_footer_ads]</b> shortcode to add banner into home page footer section</i></td> 104 109 </tr> 105 110 </table>
Note: See TracChangeset
for help on using the changeset viewer.