Skip Navigation

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

This support ticket is created vor 3 Jahren, 8 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.

Heute stehen keine Supporter zur Arbeit im Werkzeugsatz-Forum zur Verfügung. Sie können gern Tickets erstellen, die wir bearbeiten werden, sobald wir online sind. Vielen Dank für Ihr Verständnis.

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)

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

Zuletzt aktualisiert von Stephen Vaughan vor 3 Jahren, 8 Monaten.

Assistiert von: Jamal.

Author
Artikel
#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. versteckter Link

#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.