This repository has been archived by the owner on Nov 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
content.php
executable file
·66 lines (61 loc) · 2.51 KB
/
content.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
* The Default Content
*
* @package bootstart
*/
?>
<?php bstart_comment('BEGIN content.php'); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php if ( has_post_thumbnail() ): ?>
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'bstart-featured', array(
'class' => 'img-responsive',
)); ?>
</a>
<?php endif; ?>
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php // add entry-meta here ?>
</div><?php bstart_comment('.entry-meta'); ?>
<?php endif; ?>
</header><?php bstart_comment('.entry-header'); ?>
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><?php bstart_comment('.entry-summary'); ?>
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Read More...', 'bootstart' ) ); ?>
<?php edit_post_link( __( 'Edit', 'bootstart' ), '<span class="edit-link">', '</span>' ); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'bootstart' ),
'after' => '</div>',
) );
?>
</div><?php bstart_comment('.entry-content'); ?>
<?php endif; ?>
<footer class="entry-meta">
<?php // Hide category and tag text for pages on Search - do we want to add this? ?>
<?php
$categories_list = get_the_category_list( __( ', ', 'bootstart' ) );
if ( $categories_list ) :
?>
<span class="cat-links">
<?php //printf( __( 'Posted in %1$s', 'bootstart' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<?php
$tags_list = get_the_tag_list( '', __( ', ', 'bootstart' ) );
if ( $tags_list ) :
?>
<span class="tags-links">
<?php printf( __( 'Tagged %1$s', 'bootstart' ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?>
</footer>
</article>
<?php bstart_comment('END content.php'); ?>