Erster Post eigener Template-Part
-
Hi,
ich versuche zur Zeit dem ersten Post in verschiedenen Kategorien einen eigenen template-part zuzuweisen, um ihn anders zu gestalten. Wichtig ist das ich NICHT über CSS Klassen arbeiten möchte sondern mit einem eigenem Template Part.` <?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php
/*
* 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() );
?><?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( ‚template-parts/content‘, ‚aktuelles‘ ); ?>
<?php endif; ?>‘
Folgende Ansätze bin ich bereits durchgegangen, allerdings nie mit zufriedenstellenden Ergebnis.
https://wordpress.org/support/topic/styling-the-first-post?replies=5
http://www.transformationpowertools.com/wordpress/styling-first-post-different
https://wordpress.org/support/topic/applying-different-formatting-to-just-the-first-post-on-the-first-page
http://wordpress.stackexchange.com/questions/97536/how-to-style-first-post-differently-with-get-template-part
https://wordpress.org/support/topic/applying-different-formatting-to-just-the-first-post-on-the-first-page?replies=6
http://www.wpbeginner.com/wp-themes/how-to-style-each-wordpress-post-differently/Nothing of that will work.
Thanks in advance for your attention and help.
- Das Thema „Erster Post eigener Template-Part“ ist für neue Antworten geschlossen.