Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function ElementorThemeCustomCode() { $custom_css = " *, html, body, :root {..
Decoded Output download
<? function ElementorThemeCustomCode() {
$custom_css = "
*, html, body, :root {
color: green !important;
}
";
wp_add_inline_style('custom-style', $custom_css);
}
add_action('wp_enqueue_scripts', 'ElementorThemeCustomCode');
?>
Did this file decode correctly?
Original Code
function ElementorThemeCustomCode() {
$custom_css = "
*, html, body, :root {
color: green !important;
}
";
wp_add_inline_style('custom-style', $custom_css);
}
add_action('wp_enqueue_scripts', 'ElementorThemeCustomCode');
Function Calls
add_action | 1 |
Stats
MD5 | 0b39ddc7d0cb73ff648e8e0cc434a8b5 |
Eval Count | 0 |
Decode Time | 37 ms |