function service_dashboard_cpt_shortcode() { $query = new WP_Query(['post_type' => 'service_ruf', 'posts_per_page' => -1]);

if (!$query->have_posts()) { return '

Keine offenen Service-Rufe.

'; }

$html = '

    '; while ($query->have_posts()) { $query->the_post(); $html .= '

  • ' . get_the_title() . ' [Erledigt]
  • '; } $html .= '

';

wp_reset_postdata(); return $html; } add_shortcode('service_dashboard_cpt', 'service_dashboard_cpt_shortcode');