Ejemplo n.º 1
0
    /**
     * Display the post header with a link to the single post
     * @since 1.0.0
     */
    function neckbeard_page_header()
    {
        ?>
		<header class="entry-header">
			<?php 
        neckbeard_post_thumbnail('full');
        the_title('<h1 class="entry-title" itemprop="name">', '</h1>');
        ?>
		</header><!-- .entry-header -->
		<?php 
    }
Ejemplo n.º 2
0
    /**
     * Display the post content with a link to the single post
     * @since 1.0.0
     */
    function neckbeard_post_content()
    {
        ?>
		<div class="entry-content" itemprop="articleBody">
		<?php 
        neckbeard_post_thumbnail('full');
        the_content(sprintf(__('Continue reading %s', 'neckbeard'), '<span class="screen-reader-text">' . get_the_title() . '</span>'));
        wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'neckbeard'), 'after' => '</div>'));
        ?>
		</div><!-- .entry-content -->
		<?php 
    }