'; echo $output; } function affiliation_decitre_link_func( $atts ) { if ( $affiliation_decitre_campaign = get_option( 'affiliation_decitre_campaign' ) ) $params = 'utm_source=affilae&utm_medium=affiliation&utm_campaign='.esc_html( $affiliation_decitre_campaign ).'&utm_content=wordpress-link'; if ( get_option( 'affiliation_decitre_link_text' ) ) $text = get_option( 'affiliation_decitre_link_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 .= '#'. esc_html( $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='.esc_html( $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 .= '#'. esc_html( $affiliate ); } $button = ''; return $button; }