| Server IP : 159.223.1.207 / Your IP : 216.73.216.243 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Lamp-OutStaff 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.4.15 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wp-content/themes/codeassembly/ |
Upload File : |
<?php
get_header();
$title = get_field('portfolio_title', 'portfolio-page');
?>
<main class="content">
<div class="portfolio-inner">
<div class="container">
<h1 class="portfolio-title"><?=$title?></h1>
<?php
$post_args = array(
'posts_per_page' => -1,
'post_type' => 'project',
'post_status' => 'publish',
'order' => 'ASC',
);
$posts = new WP_Query($post_args);
?>
<?php if ( have_posts() ) : ?>
<div class="portfolio-list">
<div class="row">
<?php
while ($posts->have_posts()) :
$posts->the_post();
$current_post_link = get_permalink();
$current_post_title = get_the_title();
$portfolio_aim = get_field('portfolio_aim');
?>
<div class="col-lg-3">
<a href="<?=$current_post_link?>" class="portfolio-list-item">
<img class="portfolio-list-item--img" src="<?php the_post_thumbnail_url(); ?>" alt="<?=$current_post_title?>">
<p class="portfolio-list-item--title"><?=$current_post_title?></p>
<p class="portfolio-list-item--desc"><?=$portfolio_aim?></p>
</a>
</div>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>
</div>
</div>
</main>
<?php get_footer(); ?>