mirror of
https://github.com/woocommerce/storefront.git
synced 2025-08-21 04:11:59 +08:00
23 lines
445 B
PHP
23 lines
445 B
PHP
<?php
|
|
/**
|
|
* Template used to display post content.
|
|
*
|
|
* @package storefront
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<?php
|
|
/**
|
|
* Functions hooked in to storefront_loop_post action.
|
|
*
|
|
* @hooked storefront_post_header - 10
|
|
* @hooked storefront_post_meta - 20
|
|
* @hooked storefront_post_content - 30
|
|
*/
|
|
do_action( 'storefront_loop_post' );
|
|
?>
|
|
|
|
</article><!-- #post-## -->
|