This file contains hidden or 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
<div class="tmpl-media-10 boldgrid-section dynamic-gridblock"> | |
<div class="container"> | |
<div class="row" style="padding-top: 20px; padding-bottom: 20px;"> | |
<div class="col-md-12 col-xs-12 col-sm-12 text-center col-lg-12"> | |
<div class="bg-video bg-video-2 color1-border-color" data-imhwpb-draggable="true"> | |
[embed height="630" width="1120"]https://vimeo.com/505335690[/embed] | |
</div> | |
</div> |
This file contains hidden or 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 | |
/** | |
* Copy this sample file to config.local.php and update it with any variables that you would like to override | |
*/ | |
return array( | |
'meta-box' => array( | |
'post_types' => array( | |
'post', | |
'page', | |
'product' |
This file contains hidden or 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
<pre><code> | |
[2023-05-09 17:09:45 UTC] PHP Version: 7.4.28 | |
[2023-05-09 17:09:45 UTC] WordPress Version: 6.2 | |
[2023-05-09 17:09:45 UTC] Total Upkeep version: 1.15.6 | |
[2023-05-09 17:09:45 UTC] getpgid support: Available | |
[2023-05-09 17:09:45 UTC] Backup process initialized. | |
[2023-05-09 17:09:45 UTC] Process id: 8793 | |
[2023-05-09 17:09:45 UTC] -------------------------------------------------------------------------------- | |
[2023-05-09 17:09:45 UTC] Starting dump of database... | |
[2023-05-09 17:09:45 UTC] Memory usage - limit / current / peak memory usage: 1073741824 / 14664888 (13.99 MB) / 15941928 (15 MB) |
This file contains hidden or 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
#0 /home/dh_uytzv7/hemstitchrentals.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/customizer/class-boldgrid-framework-customizer-generic.php(303): Boldgrid_Framework_Customizer_Generic->create_media_prefix(Array) | |
#1 /home/dh_uytzv7/hemstitchrentals.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/customizer/class-boldgrid-framework-customizer-generic.php(128): Boldgrid_Framework_Customizer_Generic->device_visibility_styles(Array) | |
#2 /home/dh_uytzv7/hemstitchrentals.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/customizer/class-boldgrid-framework-customizer-generic.php(90): Boldgrid_Framework_Customizer_Generic->get_default_styles(Array) | |
#3 /home/dh_uytzv7/hemstitchrentals.com/wp-includes/class-wp-hook.php(308): Boldgrid_Framework_Customizer_Generic->add_styles(”) | |
#4 /home/dh_uytzv7/hemstitchrentals.com/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) | |
#5 /home/dh_uytzv7/hemstitchrentals.com/wp-includes/plugin.php(517): WP_Hook->do_act |
This file contains hidden or 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( 'wp_head', 'dismiss_tu_admin_notice' ); | |
function dismiss_tu_admin_notice() { | |
?><style> | |
.notice notice-warning .is-dismissible boldgrid-backup-protect-now { | |
display: none !important; | |
} | |
</style><?php | |
} |
This file contains hidden or 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 | |
// PHP code goes here | |
?> |
This file contains hidden or 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 | |
$name = "John Doe"; // string | |
$age = 25; // integer | |
$price = 9.99; // float | |
$isStudent = true; // boolean | |
$fruits = array("apple", "banana", "orange"); // array | |
?> |
This file contains hidden or 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 | |
$name = "John Doe"; | |
echo "Hello, " . $name . "!"; // Output: Hello, John Doe! | |
?> |
This file contains hidden or 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 | |
$age = 18; | |
if ($age >= 18) { | |
echo "You are an adult."; | |
} elseif ($age >= 13 && $age < 18) { | |
echo "You are a teenager."; | |
} else { | |
echo "You are a child."; | |
} |
This file contains hidden or 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 | |
// Loop through an array | |
$fruits = array("apple", "banana", "orange"); | |
foreach ($fruits as $fruit) { | |
echo $fruit . "<br>"; | |
} | |
// Perform a specific number of iterations | |
for ($i = 1; $i <= 10; $i++) { | |
echo $i . "<br>"; |