Skip Navigation

[Resuelto] Using • Don't include current page in query result • on intermediary post

This support ticket is created hace 3 años, 7 meses. 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.

Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.

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

Supporter timezone: Africa/Casablanca (GMT+01:00)

Etiquetado: ,

Este tema contiene 16 respuestas, tiene 2 mensajes.

Última actualización por Stephen Vaughan hace 3 años, 7 meses.

Asistido por: Jamal.

Autor
Mensajes
#1989347

Actually, I had a logic mistake in my suggested code. get_the_ID() will return the ID of the current post, which is the intermediary post. We need to exclude the product post, which is the child post. The following code works as expected:

function other_exhibits_shortcode_function() {
  $parent_id = do_shortcode('[wpv-post-id item="@exhibition-work.parent"]');
  $child_id = do_shortcode('[wpv-post-id item="@exhibition-work.child"]');
  return do_shortcode('[wpv-view name="other-exhibition-works" parentpost="' . $parent_id . '" posttoexclude ="' . $child_id. '"]');
}

add_shortcode('other-exhibits', 'other_exhibits_shortcode_function');

Now it returns only 5 posts instead fo 6. enlace oculto

#1989415

Thanks Jamal,

Bon travail!

I will go over this solution and try to learn from it.

I see I also had the shortcode in the top template as well. Reason why we are seeing things three times.

You might have seen the site crash there as well earlier on. I was experimenting with another function elsewhere on the site. Apologies for that.