Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Get the real Post ID from a Thrive Lightbox.
- *
- * Fixes the assigned_posts="post_id" option when used inside a Thrive Lightbox.
- */
- add_filter('site-reviews/assigned_posts/post_id', function ($postId) {
- global $tcb_main_post_lightbox;
- if (!empty($tcb_main_post_lightbox)) {
- return $tcb_main_post_lightbox->ID ?? 0;
- }
- return $postId;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement