'',
'product' => '',
'text' => ''
), $atts );
if ( $a['text'] ) $text = $a['text'];
$url = 'https://www.decitre.fr/'.$a['product'].'.html';
if ( $affiliate = get_option( 'affiliation_decitre_affiliate' ) ) {
if ( $params )
$url .= '?'.$params;
$url .= '#'. $affiliate;
}
$link = '';
return $link;
}
function affiliation_decitre_button_func( $atts ) {
if ( $affiliation_decitre_campaign = get_option( 'affiliation_decitre_campaign' ) )
$params = 'utm_source=affilae&utm_medium=affiliation&utm_campaign='.$affiliation_decitre_campaign.'&utm_content=wordpress-link';
if ( get_option( 'affiliation_decitre_button_text' ) )
$text = get_option( 'affiliation_decitre_button_text' );
else
$text = __('Order my product','affiliation-decitre');
$a = shortcode_atts( array(
'category' => '',
'product' => '',
'text' => ''
), $atts );
if ( $a['text'] ) $text = $a['text'];
$url = 'https://www.decitre.fr/'.$a['product'].'.html';
if ( $affiliate = get_option( 'affiliation_decitre_affiliate' ) ) {
if ( $params ) $url .= '?'.$params;
$url .= '#'. $affiliate;
}
$button = '';
return $button;
}