Unfortunately, I am on a local server. Here is the code I have to display my articles.
<?php
/**
* @package _tk
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<h1 class="page-title"><?php the_title(); ?></h1>
<?php the_excerpt(); ?>
<div class="by-meta">
By <?php the_author_posts_link(); ?>
</div><!-- .by-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<div class="entry-content-thumbnail">
<?php the_post_thumbnail(); ?>
</div>
<div class="date-info">
<?php the_time('F jS, Y'); ?>
</div>
<div class="cat-info">
<?php the_category(' | '); ?>
</div>
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', '_tk' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', '_tk' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', '_tk' ) );
if ( ! _tk_categorized_blog() ) {
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', '_tk' );
} else {
$meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', '_tk' );
}
} else {
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', '_tk' );
} else {
$meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', '_tk' );
}
} // end check for categories on this blog
printf(
$meta_text,
$category_list,
$tag_list,
get_permalink(),
the_title_attribute( 'echo=0' )
);
?>
<?php edit_post_link( __( 'Edit', '_tk' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-## -->
If this doesn’t show the problem, I’ll try to go deeper into the bootstrap to check it out.
Thank you so much!