Navigation überspringen

[Gelöst] Display individual post data in a table

This support ticket is created vor 4 Jahren, 7 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

Dieses Thema enthält 2 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von leilaG vor 4 Jahren, 7 Monaten.

Assistiert von: Shane.

Author
Artikel
#1676507

What is the recommended way to display individual post data in a table?

#1677031

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Leila,

Thank you for getting in touch.

Actually If its for an individual post like a Post template to display all the post in a table I would recommend using a Content template.

You will essentially need to build the table manually and populate the table using the Types shortcodes to retrieve the individual post data.

Example:

<table>

<tr>
<td>Content A</td>
<td>[types field='my-field'][/types]</td>
</tr>

</table>

Where the [types field='my-field'][/types] shortcode is loading the field data of the field that I want.

Please let me know if this helps or if further clarity is needed.

Thanks,
Shane

#1677601

My issue is resolved now. Thank you!