tableau et champs personnalises

This commit is contained in:
philippelin
2023-06-12 16:46:32 +02:00
parent 8e50bf8c3c
commit a4ad086903
5 changed files with 144 additions and 15 deletions
@@ -7,8 +7,57 @@
@include('partials.entry-meta')
</header>
<div class="e-content">
@php(the_content())
<?php
$minutage = get_post_meta(get_the_ID(), 'Minutage', true);
$images = get_post_meta(get_the_ID(), 'Images', true);
$bandeSon = get_post_meta(get_the_ID(), 'BandeSon', true);
$voixOffIn = get_post_meta(get_the_ID(), 'VoixOffIn', true);
$ecrits = get_post_meta(get_the_ID(), 'Ecrits', true);
$listeChamps = [
[
'titre' => 'Minutage',
'contenu' => $minutage,
],
[
'titre' => 'Images',
'contenu' =>$images,
],
[
'titre' => 'Bande Son',
'contenu' => $bandeSon,
],
[
'titre' => 'Voix In et Off',
'contenu' => $voixOffIn,
],
[
'titre' => 'Ecrits',
'contenu' => $ecrits,
]
];
?>
<table style="border-collapse: collapse;">
<tbody>
@foreach($listeChamps as $champ)
<tr>
<th style="border: 1px solid black; padding: 5px;">{{ $champ['titre'] }}</th>
<td style="border: 1px solid black; padding: 5px;">{{ $champ['contenu'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<footer>