WordPress Integration
Connect your WordPress web property within a minute using a management plugin layer or direct PHP hook logic.
Method 1: Plugin Layer
Optimal for rapid configuration routines without executing raw file modifications. Leverage plugins such as WPCode or Insert Headers and Footers.
Method 2: PHP Hook Logic
For technical setups. Append the runtime logic container directly inside the functions.php context of your Child Theme framework. The script wires into the header hook automatically.
A
Standard HTML Snippet
Header Script
<script src="https://dashfast.cz/script.js" data-domain="vasedomena.cz" data-api-key="VASE_WEBSITE_ID" ></script>
B
PHP Snippet (Developer Level)
functions.php
// Přidejte do functions.php vaší šablony
add_action('wp_head', function() {
?>
<script
src="https://dashfast.cz/script.js"
data-domain="vasedomena.cz"
data-api-key="VASE_WEBSITE_ID"
></script>
<?php
});Tip: If your environment operates active optimization layer utilities (such as WP Rocket, Autoptimize), ensure you purge the system cache after saving the snippet to enforce immediate client-side delivery.