portage/inc/content-excerpt.php

31 lines
688 B
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<!-- Post content -->
<div class="post-content post-content-<?php echo get_post_format(); ?>">
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_post_top' ); ?>
2021-08-01 17:32:46 +00:00
<?php the_content(); ?>
<div class="clear"></div>
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_post_bottom' ); ?>
2021-08-01 17:32:46 +00:00
2021-08-01 17:46:46 +00:00
<?php portage_print_options() ?>
2021-08-01 17:32:46 +00:00
</div><!-- end post content -->
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_after_post_content' ); ?>
2021-08-01 17:32:46 +00:00
2021-08-01 17:46:46 +00:00
<?php portage_link_pages(); ?>
2021-08-01 17:32:46 +00:00
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_before_post_meta' ); ?>
2021-08-01 17:32:46 +00:00
<?php get_template_part( 'inc/content', 'entry-meta' ); ?>
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_after_post_meta' ); ?>
2021-08-01 17:32:46 +00:00
<?php get_template_part( 'inc/content', 'post-nav' ); ?>
2021-08-01 17:46:46 +00:00
<?php portage_comment_display(); ?>
2021-08-01 17:32:46 +00:00
</div><!-- end post -->