Your code:
if( is_page(107) )
return;
checks for page and returns nothing on match, effectively it’s exactly opposite of what you want. So if you reverse it and put this at start of function:
if( !is_page(107) )
return;
It will do nothing everywhere, but page 107 where it will proceed to run rest of the function.
Related Posts:
- wp_enqueue_script adding conditional statement not working
- Check if first paragraph is an image, then show custom code right after it?
- If post author role is X
- Can a conditional statement apply to part of a slug?
- Add default content to posts in a specific category?
- is_front_page, is_page(‘slug’), is_page(id) not working
- Need help on creating If-statement for custom meta fields
- How to make gravatar.com avatars conditional?
- Loading Scripts on Specific Pages
- Condition function for is parent category?
- Conditional Statement – Best Way to Remove Nav on Contact Page
- Proper syntax for simple conditional bloginfo language
- wordpress is_page() problem
- Location-Based Content
- Personalized message for each unique password-protected page
- Conditional Shortcode image display
- Change Woocommerce order button page on particular page
- Change a url / link if a user is logged in?
- to create own conditional tags for business directory in wp
- How to use “Cases” instead of “IFs” for conditional logic
- Which is the better way to write a conditional statement? [closed]
- Nested conditionals
- Is there a way to password-protect part of a post?
- if/Else have_posts Else fails to echo message to page
- Conditonal statement for iPad
- How to write this conditional statement?
- Conditional for Custom Post Types
- Date-Based Conditional Tag
- Message box when accessed from iPad
- Show this code if user has previously left a comment
- Insert a conditional in the middle of a function to give it 2 different outcomes
- How can I use ‘edit_form_after_title’ conditionally?
- Force Log in to view a page
- Conditional loading of CSS for my plugin
- Looks like this if condition is not working [closed]
- Generating images from an array of categories
- WP conditional site logo and header block
- How to know if the most recent article
- Widget logic conditional widget
- How to display image on condition that a selection has been made
- How to Conditionally Not Display a Link Based on Current URL?
- Allow users to only CREATE one single (custom) post
- If statement to check for post_content
- why is my custom loop failing?
- Conditional sidebar menu
- What is the best way to disable my WP website if the user has adblocker on? [closed]
- How to tie two conditions to one statement
- Create a page from different content blocks
- Content Restriction but allow public REST API
- How do test if a post is a custom post type?
- Enqueue Scripts / Styles when shortcode is present
- wp enqueue style on specific page templates
- Manually set global $post vars with an ID, in order to use template tags
- Loading scripts only if a particular shortcode or widget is present
- Echo author ID in author.php
- Why isn’t is_page working when I put it in the functions.php file?
- How to conditionally enqueue a stylesheet only for a certain page(s)?
- why doesn’t the_content() work in this {single-custom_post_type.php} page?
- On the category page, get the category object
- how to create a conditional content_width for a wordpress theme?
- How to get the clean permalink in a draft?
- How do I display a tag cloud under my post that only shows tags from that post?
- Making a Shortcode [NEXT] and [PREVIOUS] to place into specific posts for post navigation
- How can I determine if a post has an image attachment?
- Display navigation menu item conditionally based on user capabilities
- How do I place content on archive pages but not on main page?
- get_parent_theme_file_path vs. get_template_directory
- If Post Type equals, then display X content
- Display several random posts, but make sure a condition is met
- Multisite get_home_url(); – Getting URL for current site
- Multisite Conditional (if blog_id?) in a page template?
- Show content after the first and second paragraph
- How to show the real post date in a draft
- Show/hide Widgets in Dashboard Based on Current Advanced Custom Fields Option
- How to display the_post_thumbnail if a post has one or otherwise display the first image in a post?
- Loading Javascript Only When Specific Content Existing in a Post?
- Remove line breaks in wp_list_categories()?
- Can shortcodes contain conditional statements? Even without them my shortcode renders blank page
- how to test for attached image
- setup_postdata is not returning any values
- Show different different menu in theme_location depending on x
- When to use which plugin output method?
- Display only certain posts based on visitor’s country?
- Exclude custom function content from certain pages
- Minor css-change based on topmenu – how?
- meta content on required pages
- how to limit and display tag?
- Shortcode to Gutenberg-block: additional text on front-end and conditional display
- Conditional Statement – check if post has an attachment image
- If function exists, and array is met, echo function?
- How Can I Register Menus and Widgets Conditionally Based on Theme Options/Settings?
- How to change a custom query into a standard loop?
- different tag different stylesheet
- How to hide and content from auto-generated excerpts?
- WordPress function/template tag to get first n words of the content
- Is there a PHP function that can match anything after the given URL, so my IF statement will work in each instance?
- How to tell if the user is an admin?
- Function like in_category for custom taxonomies
- Trying to use Ternary operators with WP Conditionals
- Checking if a Page has an Associated Term?