mirror of
https://github.com/woocommerce/storefront.git
synced 2025-08-21 04:11:59 +08:00
20 lines
398 B
PHP
20 lines
398 B
PHP
<?php
|
|
/**
|
|
* The template used for displaying page content in page.php
|
|
*
|
|
* @package storefront
|
|
*/
|
|
|
|
?>
|
|
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<?php
|
|
/**
|
|
* Functions hooked in to storefront_page add_action
|
|
*
|
|
* @hooked storefront_page_header - 10
|
|
* @hooked storefront_page_content - 20
|
|
*/
|
|
do_action( 'storefront_page' );
|
|
?>
|
|
</div><!-- #post-## -->
|