mirror of
https://github.com/woocommerce/storefront.git
synced 2025-08-21 04:11:59 +08:00
18 lines
No EOL
376 B
PHP
Executable file
18 lines
No EOL
376 B
PHP
Executable file
<?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-## -->
|