informacje-raw – QuintSysteme
Loading...
'name’, 'order’ => 'ASC’, 'slug’ => 'artykuly’, )); $post_counter = 0; foreach ($categories as $category) { // Output the category name in a section header echo ’
’; echo ’
’; echo ’

’ . esc_html($category->name) . ’

’; echo ’
’; echo ’
’; // Fetch posts from this category $posts = get_posts(array( 'posts_per_page’ => -1, // Get all posts 'category’ => $category->term_id )); foreach ($posts as $post) { setup_postdata($post); $post_counter++; // Determine the link URL based on post position or custom settings if ($post_counter == 1) { // First post $post_link = 'https://quintsysteme.com/produkte/e-smog-ausgleich/’; } elseif ($post_counter == 2) { // Second post $post_link = 'https://quintsysteme.com/methode/die-basis-energiemedizin/’; } elseif (isset($custom_post_links[$post->ID])) { // Custom link defined for this specific post ID $post_link = $custom_post_links[$post->ID]; } else { // Default: use the actual post permalink $post_link = get_permalink($post->ID); } // Begin card structure echo ’ ’; // Close swiper-slide } wp_reset_postdata(); echo ’
’; // Close swiper-wrapper echo ’
’; // Close section } ?>
Do góry