mirror of
https://github.com/woocommerce/storefront.git
synced 2025-08-21 04:11:59 +08:00
* update squizlabs/php_codesniffer and WP coding standards to latest * revamp phpcs sniffer rulesets: - update to php-compatibility (wimg is defunct) - add version for woocommerce-sniffs * streamline phpcs config (get it working at all): - update min WP version to 5.3 - remove references to rules we don't have installed - WordPress.VIP - WordPress.XSS * fix 2x phpcs errors (automatically via phpcbf) * update phps ignore unescaped output comment to current format * add npm scripts for php linter and linter autofixer * auto-fix PHP linter errors using phpcbf : Before phpcbf: [x] PEAR Functions Function call signature multiple arguments 127 [x] Generic White space Disallow space indent spaces used 10 [ ] WordPres WP Enqueued resource parameters missing version 6 [ ] PHPCompa Language construct New language constructs t_ns_separator found 4 [ ] WordPres Security Escape output output not escaped 4 [ ] PHPCompa Parameter values New HTMLEntities encoding default not set 2 [ ] WordPres Date time Restricted functions date_date 2 [x] Generic Files End file newline not found 1 [x] PEAR Functions Function call signature close bracket line 1 [x] PEAR Functions Function call signature content after open bracket 1 [x] Squiz White space Superfluous whitespace end line 1 [x] WordPres Arrays Comma after array item no comma 1 phpcbf fixed all [x] violations, all whitespace/formatting After phpcbf: WordPres WP Enqueued resource parameters missing version 6 PHPCompa Language construct New language constructs t_ns_separator found 4 WordPres Security Escape output output not escaped 4 PHPCompa Parameter values New HTMLEntities encoding default not set 2 WordPres Date time Restricted functions date_date 2 Note - this commit does not include auto-fixed files with other violations. These will follow in separate commit (after fixing!) * fix phpcs violations: - numerous formatting issues fixed automatically - manually fix missing version param in calls to wp_enqueue_style * fix phpcs violations: - numerous formatting issues fixed automatically - fix missing deps param in call to wp_enqueue_style * update phpcs test php version to match min requirement (5.6) * fix phpcs violations including some missing escaping: - numerous formatting issues fixed automatically - prefer gmdate() over potentially ambiguous date() - escape output (a real issue!) of comment dates * fix violations (all automated formatting fixes) * reinstate WordPress rule/standard in phpcs.xml (minimise PR changes) * exclude build (pre-zip) ./storefront & tighten excludes for dep folders * bulk-update Security.EscapeOutput.OutputNotEscaped ignore comment: - the previous comment format is no longer supported - bulk replacing these to reduce phpcs warning overhead
85 lines
2.1 KiB
PHP
85 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying 404 pages (not found).
|
|
*
|
|
* @package storefront
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
<div class="error-404 not-found">
|
|
|
|
<div class="page-content">
|
|
|
|
<header class="page-header">
|
|
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'storefront' ); ?></h1>
|
|
</header><!-- .page-header -->
|
|
|
|
<p><?php esc_html_e( 'Nothing was found at this location. Try searching, or check out the links below.', 'storefront' ); ?></p>
|
|
|
|
<?php
|
|
echo '<section aria-label="' . esc_html__( 'Search', 'storefront' ) . '">';
|
|
|
|
if ( storefront_is_woocommerce_activated() ) {
|
|
the_widget( 'WC_Widget_Product_Search' );
|
|
} else {
|
|
get_search_form();
|
|
}
|
|
|
|
echo '</section>';
|
|
|
|
if ( storefront_is_woocommerce_activated() ) {
|
|
|
|
echo '<div class="fourohfour-columns-2">';
|
|
|
|
echo '<section class="col-1" aria-label="' . esc_html__( 'Promoted Products', 'storefront' ) . '">';
|
|
|
|
storefront_promoted_products();
|
|
|
|
echo '</section>';
|
|
|
|
echo '<nav class="col-2" aria-label="' . esc_html__( 'Product Categories', 'storefront' ) . '">';
|
|
|
|
echo '<h2>' . esc_html__( 'Product Categories', 'storefront' ) . '</h2>';
|
|
|
|
the_widget(
|
|
'WC_Widget_Product_Categories',
|
|
array(
|
|
'count' => 1,
|
|
)
|
|
);
|
|
|
|
echo '</nav>';
|
|
|
|
echo '</div>';
|
|
|
|
echo '<section aria-label="' . esc_html__( 'Popular Products', 'storefront' ) . '">';
|
|
|
|
echo '<h2>' . esc_html__( 'Popular Products', 'storefront' ) . '</h2>';
|
|
|
|
$shortcode_content = storefront_do_shortcode(
|
|
'best_selling_products',
|
|
array(
|
|
'per_page' => 4,
|
|
'columns' => 4,
|
|
)
|
|
);
|
|
|
|
echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
|
|
echo '</section>';
|
|
}
|
|
?>
|
|
|
|
</div><!-- .page-content -->
|
|
</div><!-- .error-404 -->
|
|
|
|
</main><!-- #main -->
|
|
</div><!-- #primary -->
|
|
|
|
<?php
|
|
get_footer();
|