I”m trying to get the block of code below to load only when it’s the contact page but it doesn’t seem to wotk. Any ideas what the problem could be. Still pretty much new to PHP.
if (is_page('/contact-us/')) {
if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
wpcf7_enqueue_scripts();
wpcf7_enqueue_styles();
}
}