This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( | |
'caos_gtag_additional_config', | |
function () { | |
?> | |
gtag('config', '<?php echo 'AW-453289819'; ?>'); | |
<?php | |
} | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$octets = explode('.', $ip); | |
/** | |
* Instead of using Regex and str_replace, we're slicing the array parts | |
* and rebuilding the ip (implode) to make sure no duplicate values are | |
* replaced. | |
* | |
* E.g. using str_replace or preg_replace; 192.168.1.1 would result in 092.068.0.0. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Date Last Modified for WordPress Posts | |
* Plugin URI: https://daan.dev/wordpress/date-last-updated-modified/ | |
* Description: Display 'Last Updated' date along with 'Date Published' in WordPress. | |
* Version: 1.0.0 | |
* Author: Daan van den Bergh | |
* Author URI: https://daan.dev | |
* License: GPL2v2 or later | |
* Text Domain: daan-date-last-modified |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @formatter:off | |
* Plugin Name: Google Ads for CAOS | |
* Plugin URI: https://daan.dev/google-adwords-caos/ | |
* Description: Track Google Ads conversions with CAOS. | |
* Version: 1.0.0 | |
* Author: Daan van den Bergh | |
* Author URI: https://daan.dev | |
* License: GPL2v2 or later |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @formatter:off | |
* Plugin Name: Google Optimize for CAOS | |
* Plugin URI: https://daan.dev/google-optimize-caos/ | |
* Description: Add Google Optimize for CAOS in gtag.js | |
* Version: 1.0.0 | |
* Author: Daan van den Bergh | |
* Author URI: https://daan.dev | |
* License: GPL2v2 or later |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @author : Daan van den Bergh | |
* @url : https://daan.dev/how-to/bypass-ad-blockers-caos/ | |
* @copyright: (c) 2019 Daan van den Bergh | |
* @license : GPL2v2 or later | |
*/ | |
class Analytics_Proxy extends WP_REST_Controller | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// The start of my Child Theme's functions.php | |
function sparkling_remove_google_fonts() { | |
wp_dequeue_style('sparkling-fonts'); | |
wp_deregister_style('sparkling-fonts'); | |
} | |
add_action('wp_enqueue_scripts', 'sparkling_remove_google_fonts', 100); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ** MySQL settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define( 'DB_NAME', 'new_db_name' ); # CHANGE THIS! | |
/** MySQL database username */ | |
define( 'DB_USER', 'existing_db_username' ); | |
/** MySQL database password */ | |
define( 'DB_PASSWORD', 'existing_db_password' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE `table_name` | |
SET `column_name` = replace(column_name, 'olddomain.com', 'newdomain.com') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
# Exception for Google Verification | |
RewriteCond %{REQUEST_URI} !^/google-verification-file.html | |
# Exception Let's Encrypt Challenge | |
RewriteCond %{REQUEST_URI} !^/.well-known/ | |
# 301 Redirect to New Domain incl. Request URI | |
RewriteRule ^(.*)$ https://newdomain.com/$1 [R=301,L] |
NewerOlder