'pmthemes_main_ads',
'title' => esc_html__( 'Ad Settings', 'cmb2' ),
'object_types' => array( 'options-page' ),
'option_key' => 'pmthemes_ads',
'icon_url' => 'dashicons-vault',
'capability' => 'manage_options',
) );
/**
* Options fields ids only need
* to be unique within this box.
* Prefix is not needed.
*/
$main_opt->add_field( array(
'name' => __( 'Post Content Ads', 'pmthemes' ),
'desc' => __( 'These are ads that are displayed within post content areas.','pmthemes' ),
'type' => 'title',
'id' => 'post_content_ads_options',
'before_row' => '
',
) );
///=======> Genesis/PMThemes Specific Start <===========
$main_opt->add_field( array(
'name' => __( 'Ad Before Post Title', 'pmthemes' ),
'desc' => __( 'Inserted on top of post content, above post title.',
'pmthemes' ),
'type' => 'title',
'id' => 'ad_top_post_header',
'show_on_cb' => 'pmthemes_check_supported_themes',
) );
$main_opt->add_field( array(
'name' => __( 'Display State', 'pmthemes' ),
'desc' => __( 'Show or hide this ad placement.', 'pmthemes' ),
'id' => 'show_ad_before_title',
'type' => 'select',
'options' => array(
'enable' => __( 'Enabled', 'pmthemes' ),
'disable' => __( 'Disabled', 'pmthemes' )
),
'default' => 'disable',
'show_on_cb' => 'pmthemes_check_supported_themes',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code', 'pmthemes' ),
'desc' => __( 'Enter your ad code or replace existing code here.', 'pmthemes' ),
'id' => 'content_ad_top_code',
'type' => 'textarea_code',
'show_on_cb' => 'pmthemes_check_supported_themes',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Top Post Ad Position', 'pmthemes' ),
'desc' => __( 'Choose how this ad is positioned.', 'pmthemes' ),
'id' => 'content_ad_top_position',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'pmthemes' ),
'center' => __( 'Center', 'pmthemes' ),
'right' => __( 'Right', 'pmthemes' )
),
'default' => 'left',
'show_on_cb' => 'pmthemes_check_supported_themes',
) );
///=======> Genesis/PMThemes Specific END <===========
///=======>Ad BEFORE Content start<===========
$main_opt->add_field( array(
'name' => __( 'Ad BEFORE Content', 'pmthemes' ),
'desc' => __( 'Inserted between post title and first paragraph of post contents.', 'pmthemes' ),
'type' => 'title',
'id' => 'ad_before_con_header',
) );
$main_opt->add_field( array(
'name' => __( 'Display State', 'pmthemes' ),
'desc' => __( 'Show or hide this ad placement.', 'pmthemes' ),
'id' => 'show_ad_before_con',
'type' => 'select',
'options' => array(
'enable' => __( 'Enabled', 'pmthemes' ),
'disable' => __( 'Disabled', 'pmthemes' )
),
'default' => 'disable',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code', 'pmthemes' ),
'desc' => __( 'Enter your ad code or replace existing code here.', 'pmthemes' ),
'id' => 'ad_before_content_code',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Ad Position', 'pmthemes' ),
'desc' => __( 'Choose how this ad is positioned.', 'pmthemes' ),
'id' => 'ad_before_content_pos',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'pmthemes' ),
'center' => __( 'Center', 'pmthemes' ),
'right' => __( 'Right', 'pmthemes' )
),
'default' => 'left',
) );
///=======>Ad BEFORE Content end <===========
///=======>First Ad Inside Content start <===========
$main_opt->add_field( array(
'name' => __( 'Ad INSIDE Content', 'pmthemes' ),
'desc' => __( 'Inserted inside post contents.', 'pmthemes' ),
'type' => 'title',
'id' => 'ad_inside_con_header',
) );
$main_opt->add_field( array(
'name' => __( 'Display State', 'pmthemes' ),
'desc' => __( 'Show or hide this ad placement.', 'pmthemes' ),
'id' => 'show_ad_inside_con',
'type' => 'select',
'options' => array(
'enable' => __( 'Enabled', 'pmthemes' ),
'disable' => __( 'Disabled', 'pmthemes' )
),
'default' => 'disable',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code', 'pmthemes' ),
'desc' => __( 'Enter your ad code or replace existing code here.', 'pmthemes' ),
'id' => 'ad_inside_con_code',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => 'Show on Paragraph?',
'desc' => 'Enter a number only. Ex. 4 means it will be displayed within the 4th paragraph.',
'default' => '4',
'id' => 'display_on_paragraph',
'type' => 'text_number'
) );
$main_opt->add_field( array(
'name' => __( 'Ad Size', 'pmthemes' ),
'desc' => __( 'Select exact ad size.', 'pmthemes' ),
'id' => 'ad_inside_con_size',
'type' => 'select',
'options' => array(
'full-size' => __( 'Full Width Size', 'pmthemes' ),
'square-300' => __( '300 x 250 pixels', 'pmthemes' ),
'square-336' => __( '336 x 280 pixels', 'pmthemes' ),
'scraper-160' => __( '160 x 600 pixels', 'pmthemes' )
),
'default' => 'full-size',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Position', 'pmthemes' ),
'desc' => __( 'Choose how this ad is positioned.', 'pmthemes' ),
'id' => 'ad_inside_con_pos',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'pmthemes' ),
'center' => __( 'Center', 'pmthemes' ),
'right' => __( 'Right', 'pmthemes' )
),
'default' => 'left',
) );
///=======>First Ad Inside Content end <===========
///=======>2nd Ad Inside Content start <===========
$main_opt->add_field( array(
'name' => __( '2nd Ad Inside Content', 'pmthemes' ),
'desc' => __( 'Inserted inside post contents.', 'pmthemes' ),
'type' => 'title',
'id' => 'sec_ad_inside_con_header',
) );
$main_opt->add_field( array(
'name' => __( 'Display State', 'pmthemes' ),
'desc' => __( 'Show or hide this ad placement.', 'pmthemes' ),
'id' => 'show_sec_ad_inside_con',
'type' => 'select',
'options' => array(
'enable' => __( 'Enabled', 'pmthemes' ),
'disable' => __( 'Disabled', 'pmthemes' )
),
'default' => 'disable',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code', 'pmthemes' ),
'desc' => __( 'Enter your ad code or replace existing code here.', 'pmthemes' ),
'id' => 'sec_ad_inside_con_code',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => 'Show on Paragraph?',
'desc' => 'Enter a number only. Ex. 7 means it will be displayed within 7th paragraph.',
'default' => '7',
'id' => 'sec_display_on_paragraph',
'type' => 'text_number'
) );
$main_opt->add_field( array(
'name' => __( 'Ad Size', 'pmthemes' ),
'desc' => __( 'Select exact ad size.', 'pmthemes' ),
'id' => 'sec_ad_inside_con_size',
'type' => 'select',
'options' => array(
'full-size' => __( 'Full Width Size', 'pmthemes' ),
'square-300' => __( '300 x 250 pixels', 'pmthemes' ),
'square-336' => __( '336 x 280 pixels', 'pmthemes' ),
'scraper-160' => __( '160 x 600 pixels', 'pmthemes' )
),
'default' => 'full_ad',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Position', 'pmthemes' ),
'desc' => __( 'Choose how this ad is positioned.', 'pmthemes' ),
'id' => 'sec_ad_inside_con_pos',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'pmthemes' ),
'center' => __( 'Center', 'pmthemes' ),
'right' => __( 'Right', 'pmthemes' )
),
'default' => 'left',
) );
///=======>2nd Ad Inside Content end <===========
///=======>Ad BELOW Content start<===========
$main_opt->add_field( array(
'name' => __( 'Ad BELOW Content', 'pmthemes' ),
'desc' => __( 'Displayed below post content, before meta tags.', 'pmthemes' ),
'type' => 'title',
'id' => 'ad_below_con_header',
) );
$main_opt->add_field( array(
'name' => __( 'Display State', 'pmthemes' ),
'desc' => __( 'Show or hide this ad placement.', 'pmthemes' ),
'id' => 'show_ad_below_con',
'type' => 'select',
'options' => array(
'enable' => __( 'Enabled', 'pmthemes' ),
'disable' => __( 'Disabled', 'pmthemes' )
),
'default' => 'disable',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code', 'pmthemes' ),
'desc' => __( 'Enter your ad code or replace existing code here.', 'pmthemes' ),
'id' => 'content_ad_below_code',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Ad Position', 'pmthemes' ),
'desc' => __( 'Choose how this ad is positioned.', 'pmthemes' ),
'id' => 'content_ad_below_position',
'type' => 'select',
'options' => array(
'left' => __( 'Left', 'pmthemes' ),
'center' => __( 'Center', 'pmthemes' ),
'right' => __( 'Right', 'pmthemes' )
),
'default' => 'left',
'after_row' => '
',
) );
///=======>Ad BELOW Content End<===========
//================>> Amazon Affiliate Links ======================////
$main_opt->add_field( array(
'name' => __( 'Amazon Affiliate Links', 'pmthemes' ),
'desc' => __( 'Change Amazon ID and ad type here. For Amazon Affiliates only.','pmthemes' ),
'type' => 'title',
'id' => 'amazon_ads_options',
'before_row' => '
',
) );
$main_opt->add_field( array(
'name' => __( 'Amazon ID', 'pmthemes' ),
'desc' => __( 'Replace default ID with your own Amazon ID.', 'pmthemes' ),
'id' => 'amazon_id',
'type' => 'text',
'default' => 'mzyne-20'
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Ad Type', 'pmthemes' ),
'desc' => __( 'Choose Amazon Native Ad type that you would like to display.', 'pmthemes' ),
'id' => 'amazon_astore_enable',
'type' => 'select',
'options' => array(
'search' => __( 'Search Ads', 'pmthemes' ),
'custom' => __( 'Custom Ads', 'pmthemes' ),
'astore' => __( 'aStore - Discontinued', 'pmthemes' )
),
'default' => 'search',
) );
$main_opt->add_field( array(
'name' => __( 'Amazon aStore Link/URL', 'pmthemes' ),
'desc' => __( 'aStore is discontinued by Amazon on Oct 27, 2017. Please use Search Ads instead.', 'pmthemes' ),
'id' => 'amazon_astore_url',
'type' => 'text_url',
'default' => 'https://pmthemes.com',
'save_field' => false,
'attributes' => array(
'readonly' => 'readonly',
'disabled' => 'disabled',
),
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Custom Ad Code', 'pmthemes' ),
'desc' => __( '
Go here and create your own custom ad code then replace code above.', 'pmthemes' ),
'id' => 'amazon_custom_adcode',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Header', 'pmthemes' ),
'desc' => __( 'Enter desired Amazon store header title.', 'pmthemes' ),
'id' => 'amazon_store_title',
'type' => 'text',
'default' => 'Recommended Products from Amazon'
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Keyword', 'pmthemes' ),
'desc' => __( 'Replace Amazon Keyword.', 'pmthemes' ),
'id' => 'amazon_keyword',
'type' => 'text',
'default' => 'make money'
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Category', 'pmthemes' ),
'desc' => __( 'Replace Amazon Category.', 'pmthemes' ),
'id' => 'amazon_category',
'type' => 'text',
'default' => 'All'
) );
$main_opt->add_field( array(
'name' => __( 'Amazon Country', 'pmthemes' ),
'desc' => __( 'Select your preferred Amazon country.', 'pmthemes' ),
'id' => 'amazon_country_loc',
'type' => 'select',
'options' => array(
'BR' => __( 'Brazil', 'pmthemes' ),
'CA' => __( 'Canada', 'pmthemes' ),
'CN' => __( 'China', 'pmthemes' ),
'FR' => __( 'France', 'pmthemes' ),
'DE' => __( 'Germany', 'pmthemes' ),
'IT' => __( 'Italy', 'pmthemes' ),
'JP' => __( 'Japan', 'pmthemes' ),
'ES' => __( 'Spain', 'pmthemes' ),
'GB' => __( 'United Kingdom', 'pmthemes' ),
'US' => __( 'United States', 'pmthemes' )
),
'default' => 'US',
'after_row' => '
',
) );
//===================>> CLICKBANK ==========================////
$main_opt->add_field( array(
'name' => __( 'Clickbank ID', 'pmthemes' ),
'desc' => __( 'Enter Your Clickbank ID.', 'pmthemes' ),
'id' => 'clickbank_id',
'type' => 'text',
'default' => 'ijalmar77',
'before_row' => '
',
) );
$main_opt->add_field( array(
'name' => __( 'Clickbank Keyword', 'pmthemes' ),
'desc' => __( 'Enter Clickbank Keyword - Ex. make money online, affiliate marketing etc.', 'pmthemes' ),
'id' => 'clickbank_keyword',
'type' => 'text',
'default' => 'make money',
) );
$main_opt->add_field( array(
'name' => __( 'CBEngine Username', 'pmthemes' ),
'desc' => __( 'Enter Your
CBEngine Username. This is optional.', 'pmthemes' ),
'id' => 'cbengine_id',
'type' => 'text',
'default' => 'cbsuccess777',
) );
$main_opt->add_field( array(
'name' => __( 'Replace CB Affiliate Links', 'pmthemes' ),
'desc' => __( 'Change existing affiliate below with your own.' ),
'type' => 'title',
'id' => 'replace_cb_links',
) );
$main_opt->add_field( array(
'name' => __( 'Affiliate Link #1', 'pmthemes' ),
'desc' => __( 'Replace this with your encoded hoplink #1. Shortcode:
[aff1link]', 'pmthemes' ),
'id' => 'aff1_link',
'type' => 'text_url',
'default' => 'Enter your encoded Hoplink #1 here',
) );
$main_opt->add_field( array(
'name' => __( 'Affiliate Link #2', 'pmthemes' ),
'desc' => __( 'Replace this with your encoded hoplink #2. Shortcode:
[aff2link]', 'pmthemes' ),
'id' => 'aff2_link',
'type' => 'text_url',
'default' => 'Enter your encoded Hoplink #2 here',
) );
$main_opt->add_field( array(
'name' => __( 'Vendor Reference', 'pmthemes' ),
'desc' => __( 'Clickbank vendor nicknames that you can use to encode your hoplink.' ),
'type' => 'title',
'id' => 'cb_vendor_nicknames_reference',
) );
$main_opt->add_field( array(
'name' => __( 'Vendor Nickname #1', 'pmthemes' ),
'desc' => __( 'Use these Vendor Nickname To Encode Your Hoplink #1.', 'pmthemes' ),
'id' => 'cb_vendor_1',
'type' => 'text',
'default' => 'vendor id 1',
) );
$main_opt->add_field( array(
'name' => __( 'Vendor Nickname #2', 'pmthemes' ),
'desc' => __( 'Use these Vendor Nickname To Encode Your Hoplink #2.', 'pmthemes' ),
'id' => 'cb_vendor_2',
'type' => 'text',
'default' => 'vendor id 2',
) );
$main_opt->add_field( array(
'name' => __( 'How to Replace Clickbank Affiliate Links', 'pmthemes' ),
'desc' => __( '' ),
'type' => 'title',
'id' => 'how_replace_cb',
) );
$main_opt->add_field( array(
'name' => __( 'STEP 1: Open HopLink Shield Tool by clicking link below', 'pmthemes' ),
'desc' => __( '
https://accounts.clickbank.com/hoplink_encoding.htm','pmthemes' ),
'type' => 'title',
'id' => 'steps_title',
) );
$main_opt->add_field( array(
'name' => __( 'STEP 2: Create Your Encoded Hoplink #1', 'pmthemes' ),
'desc' => __( '1. On the
Hoplink Shield page, enter your Clickbank ID beside "
Affiliate
Nickname:".
2. Next, enter the vendor nickname on the field "
Vendor Nickname:". Just copy provided vendor reference on the field "
Vendor Nickname #1:".
3. Click "
Encode" button. Your encoded url should look like this:
http://48a092swohoqbu50m7r0vatmbs.hop.clickbank.net','pmthemes' ),
'type' => 'title',
'id' => 'steps_title_two',
) );
$main_opt->add_field( array(
'name' => __( 'STEP 3: Replace Affiliate Link #1', 'pmthemes' ),
'desc' => __( 'Now, copy your newly encoded Hoplink #1 and replace
Affiliate Link #1 field above.','pmthemes' ),
'type' => 'title',
'id' => 'steps_title_tre',
) );
$main_opt->add_field( array(
'name' => __( 'STEP 4: Create Your Encoded Hoplink #2.', 'pmthemes' ),
'desc' => __( 'Go back to Clickbank\'s HopLink Shield page and create another hoplink just like in "
STEP 2". This will be your Hoplink #2 or
Affiliate Link #2.','pmthemes' ),
'type' => 'title',
'id' => 'steps_title_for',
) );
$main_opt->add_field( array(
'name' => __( 'STEP 5: Replace Affiliate Link #2', 'pmthemes' ),
'desc' => __( 'Simply copy your newly encoded Hoplink #2 and replace
Affiliate Link #2 field above.
Don\'t for get to click "Save Changes" button below.','pmthemes' ),
'type' => 'title',
'id' => 'steps_title_fin',
'after_row' => '
',
) );
//===================>> Banners ==========================////
$main_opt->add_field( array(
'name' => __( 'Change banner images for Clickbank products', 'pmthemes' ),
'desc' => __( 'Replace banners and image tags below if needed. Leave it as is if you want to retain pre-loaded banners.','pmthemes' ),
'type' => 'title',
'id' => 'steps_title_banner_images',
'before_row' => '
',
) );
$main_opt->add_field( array(
'name' => __( 'Affiliate Link #1 Banners', 'pmthemes' ),
'type' => 'title',
'id' => 'affiliate_link_one',
) );
$main_opt->add_field( array(
'name' => __( 'Title/Alt', 'pmthemes' ),
'desc' => 'Put your Title/Alt info here. Shortcode: [aff1tag]',
'id' => 'aff1_title_tag',
'default' => '',
'type' => 'text',
) );
$main_opt->add_field( array(
'name' => '300x250 Banner',
'desc' => 'Put your 300x250 Banner URL here. Shortcode: [aff1banner1]',
'id' => 'aff1_banner_url_1',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '125x125 Banner',
'desc' => 'Put your 125x125 Banner URL here. Shortcode: [aff1banner2]',
'id' => 'aff1_banner_url_2',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '468x60 Banner',
'desc' => 'Put your 468x60 Banner URL here. Shortcode: [aff1banner3]',
'id' => 'aff1_banner_url_3',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '120x600 Banner',
'desc' => 'Put your 120x600 Banner URL here. Shortcode: [aff1banner4]',
'id' => 'aff1_banner_url_4',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '728x90 Banner',
'desc' => 'Put your 728x90 Banner URL here. Shortcode: [aff1banner5]',
'id' => 'aff1_banner_url_5',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => __( 'Affiliate Link #2 Banners', 'pmthemes' ),
'type' => 'title',
'id' => 'affiliate_link_two',
) );
$main_opt->add_field( array(
'name' => 'Title/Alt',
'desc' => 'Put your Title/Alt info here. Shortcode: [aff2tag]',
'id' => 'aff2_title_tag',
'default' => '',
'type' => 'text',
) );
$main_opt->add_field( array(
'name' => '300x250 Banner',
'desc' => 'Put your 300x250 Banner URL here. Shortcode: [aff2banner1]',
'id' => 'aff2_banner_url_1',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '125x125 Banner',
'desc' => 'Put your 125x125 Banner URL here. Shortcode: [aff2banner2]',
'id' => 'aff2_banner_url_2',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '468x60 Banner',
'desc' => 'Put your 468x60 Banner URL here. Shortcode: [aff2banner3]',
'id' => 'aff2_banner_url_3',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '120x600 Banner',
'desc' => 'Put your 120x600 Banner URL here. Shortcode: [aff2banner4]',
'id' => 'aff2_banner_url_4',
'default' => '',
'type' => 'file',
) );
$main_opt->add_field( array(
'name' => '728x90 Banner',
'desc' => 'Put your 728x90 Banner URL here. Shortcode: [aff2banner5]',
'id' => 'aff2_banner_url_5',
'default' => '',
'type' => 'file',
'after_row' => '
',
) );
// ======== Extra Codes ========>>
$main_opt->add_field( array(
'name' => __( 'Custom Codes', 'pmthemes' ),
'desc' => __( 'Use extra fields below to insert and display any kind of ads on your site using
shortcodes. Shortcodes can
be used in
widgeted parts of your site like the header, sidebar, footer, and homepage.','pmthemes' ),
'type' => 'title',
'id' => 'this_extra_options',
'before_row' => '
',
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code 1', 'pmthemes' ),
'desc' => __( 'Enter custom code here. To display, use this shortcode: [adcode1]', 'pmthemes' ),
'id' => 'pmns_code_1',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code 2', 'pmthemes' ),
'desc' => __( 'Enter custom code here. To display, use this shortcode: [adcode2]', 'pmthemes' ),
'id' => 'pmns_code_2',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code 3', 'pmthemes' ),
'desc' => __( 'Enter custom code here. To display, this shortcode: [adcode3]', 'pmthemes' ),
'id' => 'pmns_code_3',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true )
) );
$main_opt->add_field( array(
'name' => __( 'Ad Code 4', 'pmthemes' ),
'desc' => __( 'Enter custom code here. To display, use this shortcode: [adcode4]', 'pmthemes' ),
'id' => 'pmns_code_4',
'type' => 'textarea_code',
'options' => array( 'disable_codemirror' => true ),
'row_classes' => 'fifth',
'after_row' => '
',
) );
////////////////////////////// Secondary Options Page ////////////////////////
/**
* Registers secondary options page, and set main item as parent.
*/
$sec_opt = new_cmb2_box( array(
'id' => 'pmthemes_125_ads',
'title' => esc_html__( '125 Banners', 'cmb2' ),
'object_types' => array( 'options-page' ),
'option_key' => 'pmthemes_125',
'parent_slug' => 'pmthemes_ads',
) );
$sec_opt->add_field( array(
'name' => __( '125 Banner Ads', 'pmthemes' ),
'desc' => __( 'Upload 125 banner here and enter where it points to. To make the banner ads viewable on your site, go to