Site logo

Reply To: Individual Design for Post Listings on Blog Page, Archive Pages

Home Forums Support Individual Design for Post Listings on Blog Page, Archive Pages Reply To: Individual Design for Post Listings on Blog Page, Archive Pages

Home Forums Support Individual Design for Post Listings on Blog Page, Archive Pages Reply To: Individual Design for Post Listings on Blog Page, Archive Pages

#868723
Markus

Are you happy with our support? Yes, allways the best possible support i can imagine.
The client is online now: https://christianjung.com

I used a differrent solution for the output using the Display Post Plugin Display Posts Output Filter
https://displayposts.com/docs/the-output-filter/

<php
function mz_dps_output_customization( $output, $original_atts, $image, $title, $date, $excerpt, $inner_wrapper, $content, $class, $author, $category_display_text ) {
  $output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $image . '<div class="date">' . $date . '</div>' . $title . ' · '. $author . $category_display_text . $excerpt . $content . '</' . $inner_wrapper . '>';
  return $output;
}
add_filter( 'display_posts_shortcode_output', 'mz_dps_output_customization', 10, 11 );

The client is fine, he even gave you credit on the about page: https://www.christianjung.com/about/

For me, I am still wondering how to modify the tag-pages – just a hint where to start is fine.