-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost-meta.php
35 lines (31 loc) · 894 Bytes
/
post-meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Post Meta-Data Template-Part File
*
* @file post-meta.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2014 CyberChimps
* @license license.txt
* @version Release: 1.1.0
* @filesource wp-content/themes/responsive/post-meta.php
* @link http://codex.wordpress.org/Templates
* @since available since Release 1.0
*/
?>
<?php if( is_single() ): ?>
<h1 class="entry-title post-title"><?php the_title(); ?></h1>
<?php else: ?>
<h2 class="entry-title post-title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php endif; ?>
<div class="post-meta">
<?php
responsive_pro_posted_on();
responsive_pro_posted_by();
responsive_pro_comments_link();
?>
</div><!-- end of .post-meta -->