Pt.1: Enter the Affiliate and Reference codes provided by ARS below.
Pt.2: Enter Meta Descriptions below in the Sell Page Text and Donate Page Text areas (ex. Sell My Car in Anytown, America Area!) (ex. Your Company Name is proud to support the important work of the charities listed below.)
Sell My Car Page Instructions
Step 1. Create a new page named (Sell My Car)
Step 2. Copy/Paste the Shortcode [sell_my_car] into the page text module
Step 3: Save/Publish and the page should look like the Sell My Car example below.
Sell My Car - [sell_car_html]
Donate My Car Page Instructions
Step 1. Create a new page named (Donate My Car)
Step 2. Copy/Paste the Shortcode [donate_my_car] into the page text module
Step 3: Save/Publish and the page should look like the Donate My Car example below.
Donate My Car - [donate_car_html]
',
isset( $this->options['affiliate_code'] ) ? esc_attr( $this->options['affiliate_code']) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function ARS_ap_donate_page_url_callback()
{
printf(
'',
isset( $this->options['donate_page_url'] ) ? esc_attr( $this->options['donate_page_url']) : ''
);
}
/**
* Get the settings option array and print one of its values
*/
public function ARS_ap_reference_code_callback()
{
printf(
'',
isset( $this->options['reference_code'] ) ? esc_attr( $this->options['reference_code']) : ''
);
}
public function ARS_ap_sell_page_text_callback()
{
printf(
'',
isset( $this->options['sell_page_text'] ) ? esc_attr( $this->options['sell_page_text']) : ''
);
}
public function ARS_ap_donate_page_text_callback()
{
printf(
'',
isset( $this->options['donate_page_text'] ) ? esc_attr( $this->options['donate_page_text']) : ''
);
}
}
if( is_admin() )
$ARS_ap_my_settings_page = new ARS_ap_MySettingsPage();
?>