portage/formats/content.php

21 lines
511 B
PHP
Executable File

<!-- Post title info -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- closing tag in content-main.php -->
<?php portage_edit_post(); ?>
<?php do_action( 'portage_before_post_title' ); ?>
<h2 id="post-<?php the_ID(); ?>" class="post-title">
<?php
if ( post_password_required() ) {
echo '<span class="fa fa-key fa-rotate-90"></span>';
} else {
echo '<span class="fa fa-pencil"></span>';
}
?>
<?php the_title(); ?>
</h2>
<?php get_template_part( 'inc/content', 'main' ); ?>