mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
244 B
Text
6 lines
244 B
Text
add_filter( 'aiosp_google_autotrack', 'sfwd_aiosp_google_autotrack' );
|
|
|
|
function sfwd_aiosp_google_autotrack( $autotrack_url ) {
|
|
$autotrack_url = 'https://cdnjs.cloudflare.com/ajax/libs/autotrack/2.4.1/autotrack.js';
|
|
return $autotrack_url;
|
|
}
|