Skip to content

Instantly share code, notes, and snippets.

Created August 24, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7b504c15d56ed06c01abef94bd0557fd to your computer and use it in GitHub Desktop.
Save anonymous/7b504c15d56ed06c01abef94bd0557fd to your computer and use it in GitHub Desktop.
<?php // unterhalb dieser Zeile kopieren, den Bereich .entry-content austauschen ?>
<div class="entry-content">
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( 'Continue reading %s', 'twentyfifteen' ),
the_title( '<span class="screen-reader-text">', '</span>', false )
) );
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
<!-- Die statischen Share-Buttons. Anzeige nur auf single.php -->
<?php if ( is_single() ) : ?>
<?php echo tb_share_buttons(); ?>
<?php endif; ?>
<!-- Ende statische Share-Buttons -->
</div><!-- .entry-content -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment