OK, so first of all, you should always use proper escaping, when building the queries.
This is how your code can look after fixing:
global $wpdb;
$value = $wpdb->get_var( $wpdb->prepare(
" SELECT column_name FROM {$wpdb->prefix}plugin_table WHERE ID = %d ",
get_current_user_id()
) );
The things you have to take care of:
- You have to change
column_name
to proper column name you want to get. - You have to change
plugin_table
to proper table name you want to get the value from. - You have to change
ID
to proper name of column that stores the user id in given table.
Related Posts:
- Querying multiple meta_keys in WordPress SQL query
- How to return number of found rows from SELECT query
- $wpdb->get_results(…) returns empty array despite correct query
- $wpdb->delete column values IN ARRAY()?
- Display data from a non wordpress database on a page template
- How to auto login user again after change user_login
- How to Join two tables from separate databases within WordPress
- Would manually deleting the dumping data fix a “#1062 – Duplicate entry ‘1’ for key ‘PRIMARY'” phpMyAdmin error?
- How to generate page content from database the right way?
- phpMyAdmin displays error when importing database
- Get stock by custom meta field on all Woocommerce variable products
- Any possible way to make $wpdb->get_results() return anything else than array?
- database interactions using OOP
- Transferring working local PHP site to wordpress – with database (MySQL)
- how to delete 30 day old data using PHP [closed]
- Display fields as values in array from external SQL DB
- Trying to establish connection to External Database
- Getting id of poll from WP database
- How to insert a single row to WP database table?
- $wpdb->update with multiple parameters gives error
- Querying wpdb using PHP
- Update results, Before deleting the related category [closed]
- How WordPress reacts to a lack of memory of the server [closed]
- $wpdb->insert() does not Insert record in a table
- Databases – Submitting data from inputs to database [closed]
- Is it best to avoid using $wpdb for security issues?
- How to retrieve the data from the sever and displaying it in a page?
- Use $wpdb or other PHP script method to find/replace in WP database
- How can I add a new row in a separate database when someone registers via WordPress?
- I can’t update my data through $wpdb
- wpdb Cannot Update column in Database
- PHP -> SQL Query with Summing
- Lost in trying to create user database system
- Delete database record using plugin from admin panel
- Wpdb get->results to out the the month from the db
- Filter results from a serialized string to use on statistics
- wordpress site – using custom database and PHP
- WPDB – Read and write value from / to database
- Why my query does not run with prepare
- How to Generate a list of Most Commented post?
- wpdb getting avatars and author url
- Add row to custom database Table and delete all rows older than 1 day
- select a single val though a table in wordpress
- WordPress SQL JOIN query
- Fetching review value using wpdb class
- Add posts to custom table in database instead of wp_posts
- Database SQL query error
- WordPress SQL Prepare
- add role on WordPress in PHP on a second database
- Creating multiple tables with Plugin
- Using wpdb to connect to a different database is not working
- How to grab data from input and store it into custom table in database?
- Front end/Database connection in WP
- direct query to post_meta table
- can’t delete a row from post_meta table
- Accessing external database: ERR_INCOMPLETE_CHUNKED_ENCODING
- Can not manually create a database ( db, user, pass ) for a plugin
- How to fetch results from database
- MySQL database migration to WordPress
- Fetching wpdb data from a php file seems to break?
- Insert into db with foreach problem
- Can’t send form data to wpdb when URL has query string
- How to get data (not value or name) from radio options to POST to database
- Retrieve data from external database and insert back in
- Putting form result in my database
- How to properly prepare a column name if passed to a stored procedure?
- Function wpdb::prepare was called incorrectly. The query argument of wpdb::prepare() must have a placeholder
- How can I save unique user data on my site? [closed]
- Is it possible to create a wordpress database with php code?
- Store a default value for a transient on plugin activation
- wpdb php get_var query to get ID for URL image doesn’t work for ID over 999
- Split reads to a different connection string
- custom user role wordpress – grant guest access to edit.php without insert/update/delete
- Execute long and heavy processes
- Dynamic content in template
- Create table from array with prepare
- wp query foreach deleting record returning only first or last item
- database sent to a JSON file
- Archive post by meta value + 24hours
- inserting a post from an extern php file but post content doesn’t show on wp site
- Database query works fine outside WordPress
- Using $wpdb (WPDB class) ‘replace’ with multiple WHERE criteria problem
- Genesis framework comments broken?
- Using custom tables for old posts
- Help with a $wpdb MySQL Query
- db converts decimal number wrong
- Not connecting to database in file with multiple MySQL connections
- Fatal error: Call to a member function query() on a non-object
- WPDB SQL query with prepare() returning variable, not db value
- Filtering a Database Query
- Custom array from a query only write the last row of the query
- Issue running db create table query from static method
- Display Data in Table from External Database in WP using Shortcodes
- How can I import an excel column into wordpress database?
- Blob file download problem
- Error using WordPress $wpdb object to get result from custom table
- WordPress Block developer from exporting Database via PHP
- Querying Database with wpdb
- $wpdb returns duplicate posts
- Execute a function every hour in the background