Advertisement
campusboy

Функция для Гугл.Мерч

Jul 13th, 2017
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. add_action('wp_footer', function (){
  2.     // Яндекс.Касса
  3.     if( isset( $_GET['customerNumber'] ) ){
  4.        $order_id = $_GET['customerNumber'];
  5.     }
  6.    
  7.     // Тинькофф
  8.     if( isset( $_GET['OrderId'] ) ){
  9.        $order_id = $_GET['OrderId'];
  10.     }
  11.    
  12.     // Проверка и отображение кода отзывов Google
  13.     if( is_page( 908 ) && function_exists('ecr_gcr_scripts') && ! empty( $order_id ) ){
  14.         ecr_gcr_scripts( $order_id );
  15.     }
  16. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement