You should use prepare only when you’re using SQL query – this function takes query and params and returns a safe SQL query filled with given params.
Its result is a SQL query. So you can (and should) use it whenever you’re creating a SQL query and put some params in it.
With $wpdb->delete or $wpdb->update you don’t create any string containing SQL query – both these functions are taking only params and the create and run the queries for you – so there is no need for preparing.
If you use $wpdb->insert, then you also don’t have to prepare – there is nothing to be prepared.
But if you insert with raw SQL, as you do in your code, then yes – you should always prepare such query.
Related Posts:
- correct validate and sql query
- SQL query, error
- problem with sql query
- Remove posts that start with similar words (like a delete duplicate posts plugin)
- Show a different number of posts per page depending on context (e.g., homepage, search, archive)
- What are the common security flaws I need to look for? [closed]
- Making my plugin multi-site compatible
- Creating 20,000 Posts or Pages using a .csv file?
- Is their any way to Extend WPDB class and Overwrite the Default Query Function
- What’s the easiest way to duplicate an entire navigation menu?
- Using nextGen Gallery.. how can I call a list of all Gallery Names?
- Search and replace text across all posts
- Updating WooCommerce variable product stock issue
- bulk post_content update
- How can I get a list of plugins and which blogs are using them?
- What is the easiest way to implement cascading database upgrade for my plugin?
- [Plugin: Posts 2 Posts] How does it work?
- Post query – show posts from specified day and month and whole years
- Plugin Development sqlite or WordPress’ database
- Retrieving a Value from a wp-database
- Plugin echos text from shortcode function in gutenberg page editor
- Problem with creating tables for Plugin
- Prevent duplicate records in plugin table
- WordPress WPforms customization
- How do I run SQL queries on a WordPress web page? [closed]
- Migrating to WordPress Recipe Plugin and Some SQL Issues
- WP Query. Is there a maximum size?
- WordPress and a secondary database?
- plugin code is pulling information from database in one instance and not in other. What is wrong?
- WooCommerce search products between price range using WP_Query
- How to create multiple database tables on plugin activation?
- Does deleting a Plugin via the WordPress admin ‘completely’ remove the code?
- Speeding SQL queries for a large database?
- $wpdb update query in plugin only updating one column
- Create a post builder skin in a plugin
- Taxonomy Drill-Down / Plugin Help – hierarchical queries within plugin?
- How to customize a title by passing query string?
- What is the best way to cache pages on WordPress
- Always get creating a new table with foreign key
- Woocommerce Backend Search by Title and SKU
- add_query_arg not work in admin
- Deactivation Hook does not remove database
- How to return the values from a row where a value occurs for the first time among the rows available?
- How to use apply_filters?
- Using AJAX to run SQL statement and populate dropdown
- Adding CASE in WP_Query
- JOIN and SUM different statement results (Mailster Database)
- How to search post titles with whole words only, but not the exact word only?
- How to get specific column data conditionally in database in WordPress?
- Change language on website and change currency with url query
- Memcaching recurring SQL Queries
- add products to WordPress site automatically
- How to get database connection details without longing to cpanel in WordPress?
- Performing CRUD operations on front end in wordpress
- Displaying different content depending on variable
- How to create algorithm for ordering posts in WordPress?
- Display a number value from mysql query in WP
- Looping the data from WordPress database using foreach
- How To Toggle User_Meta in frontend in a form using PHP
- Get and Update Most Meta Value as an array in HTML form
- WordPress filter from custom table is not working properly
- errno: 150 “Foreign key constraint is incorrectly formed” [closed]
- Multiple Meta key in search
- Having trouble going from Jfiddle to implementing in WordPress :(
- Create Array from data in the OPTIONS table
- Proper way to trigger a MySQL query via link in a plugin
- get_var result empty for query of custom table in plugin admin
- WP-Snap too slow (caused by WP_Query?)
- why the current date do not update
- Custom Table doesn’t create on plugin activation
- Using wp config to connect to a DB from a plugin
- correct validate inputs
- Get all the related data from WordPress DB
- ‘Active lotteries’ only custom query for woocommerce lottery plugin and elementor
- How to change and edit users according to the extension in the URL
- How to verify/test that a custom built wordpress theme is as secure as possible?
- Remove WordPress Toolbar buttons
- Adding an admin page – OOP approach not working
- How can I pass a variable to wp_ajax action?
- How do I make images clickable so as to enlarge them using lightbox?
- FacetWP group listings by custom field [closed]
- UnInstallation of a Plugin from a developers perspective – The correct and clean method
- Creating custom HTML pages
- Center and hide overflow of WP toolbar custom links
- Is there a WordPress plugin that can post to Google+? [closed]
- Localizing methods for jQuery append prepend wrap parent
- Plugin not properly prepared for localization
- Polldaddy doesn’t show up on own theme
- What plugins can I use to feature (affiliate) products on my blog (from Amazon.com)?
- Problem with WordPress Elementor linked image and Round Corners Going Square Again
- Multisite converted to Single Site can’t add new plugins or new themes
- Category as Subdomain for One WP Install
- How to show Conditional Statement In CMB2 for input text?
- How to enable Admins to see Plugins
- Possible jquery / library conflict in plugin usage
- Display Plugin information on specific url
- How to add post type in masonry posts elementory widget
- How to add plugin to blog [closed]
- Issue with customizer and widget page
- Posts in Admin only display 1 Post instead of all Post in admin area