portage/inc/content-main.php

29 lines
576 B
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<!-- Post content -->
<?php get_template_part( 'inc/content', 'entry-meta' ); ?>
<div class="post-content">
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 portage_post_top_link(); ?>
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
<?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 -->
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_after_post_content' ); ?>