Never just print the result of get_the_term_list()
without additional checks. It might return an instance of WP_Error
which is an object, not a string.
Save the result of get_the_term_list()
in a variable and print the terms only if there are terms and not an error:
<?php
$stores = get_the_term_list( $post->ID, 'store', '', ', ' );
// We got something back, and it is not an error.
if ( ! empty( $stores ) and ! is_wp_error( $stores ) )
{
echo "<p class="excerpt">
<strong>Bekijk meer van extra1 $stores extra2</strong>
</p>";
}
?>
Related Posts:
- How to fix “Headers already sent” error in PHP
- What are PHP extensions and libraries WP needs and/or uses?
- How to get WordPress Time Zone setting?
- How to stop form resubmission on page refresh
- the_author_meta() vs get_the_author_meta()
- Displaying a WooCommerce product via PHP
- Enqueue Javascript Correctly for 3.5
- How to get the ID of an item in an audio playlist?
- Does wordpress allow me to add a php file to the root directory to execute custom scripts?
- Add footer.php to WordPress child theme
- how to display active, upcoming and past event with featured listing with pagination
- How to Explode a Textarea Field and Echo each line separately, wrapped with HTML
- Import 10,000 Users into WordPress WITH a specific ID for each user
- Include a Gutenberg Block in a PHP file
- do not show web page section when using advanced custom fields pro
- How to slow down server response
- Click loads template via ajax
- Why isn’t the canonical link element used for all pages?
- Working with a modified WordPress & Theme and updating WordPress
- Get all user meta by meta key instead of ID
- How Can I Call Up The Author’s Name on a Post
- how can i show only the parents in owl-carousel?
- Randomise upload filenames (or another solution to hide the original image URL from theft?)
- Use menu link or onClick to set a variable
- Automatically remove a canceled order in Woocommerce
- How to pass arguments to add_action() or retrieve return value of called function?
- Seach custom post type posts only by meta fields?
- Create highly customized submenu (possibly using wp_list_pages)
- Display a message if posts dosen’t exist on loop
- WordPress Custom field Colors
- Change WordPress Upload Folder using wp handle upload
- get taxonomy thumbnail and use it as a variable in code
- What are the advantages/disadvantages of using jQuery DOM manipulation as opposed to PHP DOM manipulation?
- Why doesn’t add_filter have the option to include a callback for each run?
- Sending a custom form data in email through WP Mail Function
- Disable plugin function to use my own
- Normal PHP array for exclude section of WordPress query?
- Where is this function’s callback getting its arguments from?
- Using Argument from Function to Re-Direct Visitor (WordPress)
- email alert for product availability
- How do I prepare strings for insertions as values into a MySQL table?
- How to present a div only when the index.php is accessed for/by the single post pages
- Displaying list of posts in category page
- How to get post category list as select in front-end?
- how can I include some custom variable from functions.php?
- WPDB – Read and write value from / to database
- Is it possible to add a custom page to a free WordPress site? [closed]
- Advanced Custom Fields [closed]
- Simple php in wordpress widget [closed]
- Assistance with elseif [closed]
- Function to call either single post or category
- search and add in wordpress content
- How to make Subdomain work for product_tag?
- Updating Metadata with Shortcode
- Updated to PHP 8.0 and WordPress site not working
- How do I add a function to parent theme
- Are there any drawbacks on opening a session_start in functions.php and header.php?
- Setting up a cron job to auto update a custom field
- How do you measure the PHP generation time of your WordPress pages?
- Admin-ajax.php 404 error
- Change the “Show All” button in a WordPress Portfolio Filter
- Confuse between forms and tables
- How do I properly upgrade WordPress’s PHP within an OpenLiteSpeed GCP instance? [closed]
- How to edit content in WordPress and the Polylang – plugin? – with demosite
- ACF Gallery field images donwload
- Trying to retrieve meta values from three different meta keys and display in rows
- Cannot figure out how to add a read more link to a manual excerpt. Please help
- This occurs when I open admin or front on localhost
- Search only for posts with specific metadata?
- ACF background-color per post in a WordPress loop
- ajaxurl usage for a custom function
- oembed facebook link?
- Trouble with checked() for array of multiple checkboxes
- (Xdebug Profiler) Why are there two cachegrind files generated for one page?
- Is it possible to dupplicate a WordPress post with php?
- How to create a radio button to alt between settings in wp_options table
- I want to use wordpress database in android app using json encode?
- get_post_meta with variable
- if user is admin display admin link and logout link else display logout only
- site_url() returns with additional backslashes
- How to redirect unattached image attachments
- Adding instant search to wordpress page
- If Month=Particular month display content [closed]
- Easier URL to an image
- Name Input from widget displays Sidebar name instead of saved data
- WP multisite network plugin fails to see classes loaded with spl autoload
- Change order that the menu is generated with wp_list_pages
- Using variables as href in anchor tags (PHP) [closed]
- What’s the .php file which generates the Custom Background page in the admin panel?
- Parse error: syntax error, unexpected ‘else’ (T_ELSE) [closed]
- Code working in functions.php but not pluign for gavity forms
- Change an option string to a function [closed]
- get_body_params() is always empty in POST request
- Warning: Attempt to read property “term_id” on int – Woocommerce
- Headers already sent error with get_template_part in REST API call
- How to fix wordpress after update to php 8.1?
- rest_cannot_create_user – Sorry, you are not allowed to create new users. CURL WORDPRESS REST API
- links Slick jS library using wp_enqueue_scripts not pulling
- How to run site locally after downloading database
- How to change shipping method title based on cart amount?