19 lines
253 B
PHP
19 lines
253 B
PHP
<?php get_header(); ?>
|
|
|
|
<?php
|
|
|
|
$client = get_field('client_name', get_the_ID());
|
|
|
|
|
|
?>
|
|
|
|
<div class="portfolio-single ">
|
|
|
|
<div class="portfolio-single__project-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<?php get_footer(); ?>
|