mirror of
https://github.com/woocommerce/storefront.git
synced 2025-10-04 14:11:16 +08:00
18 lines
No EOL
373 B
PHP
18 lines
No EOL
373 B
PHP
<?php
|
|
/**
|
|
* @package storefront
|
|
*/
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemscope="" itemtype="http://schema.org/BlogPosting">
|
|
|
|
<?php
|
|
/**
|
|
* @hooked storefront_post_header() - 10
|
|
* @hooked storefront_post_meta() - 20
|
|
* @hooked storefront_post_content() - 30
|
|
*/
|
|
do_action( 'storefront_loop_post' );
|
|
?>
|
|
|
|
</article><!-- #post-## -->
|