You say “However, I know this is not a good way to do this” in your self answer. One thing I could add answering your question and using your answer is, you can use SQL_CALC_FOUND_ROWS with $wpdb
$result = $wpdb->get_results(
"SELECT SQL_CALC_FOUND_ROWS * FROM `wp_table` WHERE 1 LIMIT 10;"
);
$total_count = $wpdb->get_var(
"SELECT FOUND_ROWS();"
);
This way you don’t have to run the query twice.
Related Posts:
- How to return number of found rows from SELECT query
- Can i use php sql functions instead of $wpdb?
- $wpdb->delete column values IN ARRAY()?
- How to implement WP_List_Table? WP_List_Table giving array instead of a value in listing table
- Custom query to get post names beginning with a digit
- Ajax $wpdb not returning table data
- Converting MYSQL to WordPress $WPDB
- Why is variable not working on custom sql query using wpdb?
- Show MySQL errors that occur when I excute $wpdb->insert()
- Can’t get wp_insert_post to work
- WSoD being caused by this piece of code
- I want to select the from values from database in WordPress? [closed]
- Update results, Before deleting the related category [closed]
- wp query foreach deleting record returning only first or last item
- Database query works fine outside WordPress
- Using $wpdb (WPDB class) ‘replace’ with multiple WHERE criteria problem
- $wpdb->insert() does not Insert record in a table
- Help with a $wpdb MySQL Query
- Custom array from a query only write the last row of the query
- $wpdb returns duplicate posts
- Mixing variables into an array when inserting values
- 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?
- Basic wpdb update question
- I can’t update my data through $wpdb
- Output: “Array”
- How to use mysql LIKE with wpdb?
- How do I prepare strings for insertions as values into a MySQL table?
- How to use AJAX in WordPress in MYSQL query?
- form $_post action value gets truncated after it passes through two forms
- Why won’t this wpdb get_results query return results?
- WPDB secure custom form
- Add row to custom database Table and delete all rows older than 1 day
- select a single val though a table in wordpress
- populate select options from extra mysql table data
- Query the links Database
- MySQL Query Returns Array () In Shortcode
- Passing in MySQL prepare statement parameter separately throwing error
- Convert a column of a table containing an Array as response in HTML
- Database SQL query error
- MYSQL TIMESTAMP when adding DATE_FORMAT then the output is blank, PHP conflict?
- Conditional formatting on data fetched from MYSQL
- What is the correct way to search 3 custom fields only in WordPress?
- Using wpdb to connect to a different database is not working
- Rewrite SQL query as a prepared statement and use in foreach loop
- Advanced WordPress SQL Query
- MySQL query in WordPress with AJAX
- Passed variable gets undefined variable error on insert on next page
- MySQL queries in WordPress
- Using the same shortcode to show any table from the database
- MySQL database migration to WordPress
- Error resetting database index using ALTER TABLE in $wpdb->query
- Putting form result in my database
- How can I update a value of a field depending on outside source?
- MySQL “Or” Condition
- WordPress SQL injection
- multiple where condition in result query
- How to get all author posts outside of author templates
- Grouping posts by a custom meta value
- Next post link on a bootstrap button
- Can’t update multiple rows with $wpdb query
- wpdb prepare insert table doesn’t work
- Rewrite with pagination /foo/page/2/ to posts of a given category, page 2
- Delete database record using plugin from admin panel
- Wpdb get->results to out the the month from the db
- Live search from database table
- Why my query does not run with prepare
- wpdb getting avatars and author url
- phpMyAdmin error #1062 – Duplicate entry ‘1’ for key ‘PRIMARY’
- WordPress SQL JOIN query
- page 1 is not paged
- How to create Loop code for Menu using WordPress?
- How to WP_Query posts order by parent title?
- How to work Woocommerce pagination inside shortcode?
- Error establishing a database connection (Set-up locally)
- How to stop hiding buttons forward / backward in pagination?
- How to make a pagination with dropdown selection?
- how to get data from two different table from wordpress database
- Passing Current User ID into SQL statement
- How to insert multiple rows and columns in database using array
- Modify post image in full size
- Windows Setup: Error establishing a database connection
- WAMP SERVER Command Prompt SET PATH=%PATH%
- Exclude a category slug on pagination
- How can get all users by current user meta (array)?
- Apply filters when loading post via ajax
- offset and max_num_pages in pagination gallery
- Processing forms with php to wordpress database
- How to fetch results from database
- How to connect database table to each registered wordpress user.
- AJAX with Selectbox Plugins (Select2, Chosen, Selectize)
- I am unable to fetch json data from wp_db
- Pagination not working properly
- How to send push notification in android using php? [closed]
- Changing regular db connection to $wpdb
- How to Set Page Pagination Using Ajax JQuery – WordPress
- How to get a database field value from a WordPress table? [closed]
- Can’t send form data to wpdb when URL has query string
- $wpdb how to make a record lookup
- Custom post type removing /page/2/ from URL when trying to access it