Server IP : 89.26.249.46  /  Your IP : 216.73.216.42
Web Server : Apache
System : Linux a.cp.cloudlink.pt 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User : eticalga ( 1129)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/eticalga/www/files/themes/kobuxeticalgarve/templates/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/eticalga/www/files/themes/kobuxeticalgarve/templates/faqs.php
<?php

/**
 * Template Name: FAQs
 *
 * @package kobuxeticalgarve
 */

get_header(); ?>
<div id="content">
	<?php while (have_posts()) : the_post(); ?>
		<?php include(locate_template('partials/page-top.php')); ?>

		<div class="site-content">
			<div class="container xlarge">
				<div id="posts-wrapper">
					<ul class="articles-list">
						<?php
							$faqs = get_posts(array(
								'post_type' => 'faqs',
								'orderby' => 'title',
								'order' => 'ASC',
								'post_status' => 'publish',
								'posts_per_page' => -1,
								'suppress_filters' => false
							));

							if ($faqs) {
								foreach ($faqs as $post) {
									setup_postdata($post);

									include(locate_template('partials/faq-card.php'));
								}
								wp_reset_postdata();
							}
						?>
					</ul>
				</div>
			</div>

			<?php
				the_content();
			?>
		</div>
	<?php endwhile; ?>
</div>
<?php get_footer(); ?>