Skip Navigation

[Resolved] Display individual post data in a table

This support ticket is created 4 years, 5 months ago. 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)

Tagged: 

This topic contains 2 replies, has 2 voices.

Last updated by leilaG 4 years, 5 months ago.

Assisted by: Shane.

Author
Posts
#1676507

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

#1677031

Shane
Supporter

Languages: English (English )

Timezone: 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!