Edit File by line
/home/zeestwma/richards.../wp-inclu...
File: template-canvas.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Template canvas file to render the current 'wp_template'.
[2] Fix | Delete
*
[3] Fix | Delete
* @package WordPress
[4] Fix | Delete
*/
[5] Fix | Delete
[6] Fix | Delete
/*
[7] Fix | Delete
* Get the template HTML.
[8] Fix | Delete
* This needs to run before <head> so that blocks can add scripts and styles in wp_head().
[9] Fix | Delete
*/
[10] Fix | Delete
$template_html = get_the_block_template_html();
[11] Fix | Delete
?><!DOCTYPE html>
[12] Fix | Delete
<html <?php language_attributes(); ?>>
[13] Fix | Delete
<head>
[14] Fix | Delete
<meta charset="<?php bloginfo( 'charset' ); ?>" />
[15] Fix | Delete
<?php wp_head(); ?>
[16] Fix | Delete
</head>
[17] Fix | Delete
[18] Fix | Delete
<body <?php body_class(); ?>>
[19] Fix | Delete
<?php wp_body_open(); ?>
[20] Fix | Delete
[21] Fix | Delete
<?php echo $template_html; ?>
[22] Fix | Delete
[23] Fix | Delete
<?php wp_footer(); ?>
[24] Fix | Delete
</body>
[25] Fix | Delete
</html>
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function