Das Beitrags-Meta heißt im Theme Twenty Sixteen anscheinend entry-footer:
Aber wo ist definiert, was und in welcher Reihenfolge im entry-footer angezeigt wird?
1. Wenn ich recht verstehe, ruft die index.php von "2016" insoweit bloß die jeweils benötige Datei im template-parts-Ordner auf:
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
<?php
// Start the loop.
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
// End the loop.
endwhile;
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'twentysixteen' ),
'next_text' => __( 'Next page', 'twentysixteen' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
) );
// If no content, include the "No posts found" template.
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</main><!-- .site-main -->
</div><!-- .content-area -->
Alles anzeigen
2. a) In der content.php heißt es dann u.a.:
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php twentysixteen_entry_meta(); ?>
<?php
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
__( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
get_the_title()
),
'<span class="edit-link">',
'</span>'
);
?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->
Alles anzeigen
b) In der single-content.php steht, sofern mir nichts entgangen ist, insoweit dasselbe:
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php twentysixteen_entry_meta(); ?>
<?php
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
__( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
get_the_title()
),
'<span class="edit-link">',
'</span>'
);
?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->
Alles anzeigen
3. Meine Idee war dann, daß vllt. in der functions.php von "2016" definiert ist, was mit "twentysixteen_entry_meta" aufgerufen wird:
Dort finde ich aber weder "entry" noch "meta" noch "footer" - geschweige denn "entry_meta" und "entry-footer"...; auch nicht "byline" etc.
4. Wo finde ich das, was ich suche?
5. Irgendwo muß im übrigen auch definiert sein,
- daß auf der Startseite das Datum von oben gehalten Beiträgen ausgeblendet wird...:
sowie
- daß auf der Startseite der Autorname nicht abgerufen wird, auf der Beitragsseite aber sehr wohl.