Current path: home/webdevt/www/wdp/wp-content/themes/wagency/
?? Go up: /home/webdevt/www/wdp/wp-content/themes
<?php
/**
* The template for displaying all portfolio posts
*/
get_header(); ?>
<div class="spcont">
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* translators: %s: Name of current post */
the_content(
sprintf(
esc_attr__( 'Continue reading ', 'wagency' ),
'<span class="meta-nav">→</span>',
the_title( '<span class="screen-reader-text">', '</span>', false )
)
);
wp_link_pages(
array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_attr__( 'Pages:', 'wagency' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
)
);
?>
<?php endwhile; ?>
</div><!-- #primary -->
<div class="container">
<?php comments_template(); ?>
</div>
<?php get_footer(); ?>