WordPress provides a global variable, $wpdb, which can be used to read data from any table in the WordPress database
1
vote
1answer
35 views
Custom select query wordpress order by meta key value
I am trying to ORDER BY my results of a custom select query.
But I am trying to order by the value of a meta key.
Please see my query below...
$get_atts = $wpdb->get_results("SELECT ID, ...
1
vote
2answers
50 views
$wpdb->get_var isn't working for me
I am working on a paypal IPN handler that gets an IPN then sends an e-mail. Right now I am testing it trying to access the 'paid' column of my database to make sure the transaction has not already ...
0
votes
1answer
33 views
DISTINCT function does not work online with $wpdb
I have a query which fetches some data from existing opencart web shop database.
The small problem are the doubled results which i solved locally using DISTINCT. It worked perfectly until i used the ...
0
votes
1answer
48 views
Editing the object returned by $wpdb->get_results(SQL)
We have a nasty database call using the Wordpress function $wpdb->get_results(SQL).
After receiving the result in PHP, we need to make a few changes to the result.
So can anyone tell me how I can:
...
0
votes
0answers
61 views
Inserting & updating array values in WP mysql database
I can insert a single record from variables into a custom WordPress table using the following method:
global $wpdb;
$wpdb->custom_table = $wpdb->prefix . 'clients';
$wpdb->query( ...
0
votes
1answer
25 views
MySql get only the different results of an wordpress query
I would like so select content from an Wordpress DB to fill an <select> with all different categories but its possible, that 2 ore more posts have the same categorie, in this case i it should ...
0
votes
0answers
24 views
FIlter content by category and by meta
Im trying to filter an Wordpress request with 2 parameters.
by a custom field (REGION) there are 6 regions
by categorie, there are n-categories with 1 value per post.
As result i would like to have ...
0
votes
1answer
31 views
wpdb select table no arguments
I am using new wpdb for accessing database with wordpress.
$mydb = new wpdb($username,$password,$database,$hostname);
$sql = $mydb->prepare("SELECT * FROM " . $table);
$results = ...
3
votes
3answers
91 views
problems in create advanced search using query
I have a problem in creating advanced search with custom query and using $wpdb->get_results($query , OBJECT);
In Normal search in wordpress when we search xxx yyyy or search yyyy xxx we have same ...
0
votes
0answers
32 views
Show info from database if logged in user matches (wordpress)
I been searching and trying a bit for 3 days now to get things worked up. So i come for help as some of the results here have given me what i need.
Scenario:
The website is a registration system for ...
0
votes
1answer
32 views
WordPress $wpdb->options returns blank
I am working on a WordPress theme and trying to use the $wpdb class from within my own theme class. When I try to use the following SQL query the $wpdb->options variable is blank and generates an ...
0
votes
1answer
89 views
cant insert into custom table using wpdb
I created a custom table for my WordPress plug-in and called it "recp_clients". Not sure if it matters but I did NOT us a prefix of "wp_".
In my php file that processes some form data, rather than ...
0
votes
0answers
74 views
Send ajax collected data to the current users database Wordpress
I am using WooCommerce and added an additional field "location_gps" to collect the location (lat,long) added the ajax call to collect the data. Now I'm stuck getting the data into the current users ...
0
votes
2answers
158 views
wpdb update query not working
I've made an email script that should update as soon as wp_mail has result. For some reason my value won't update. Have I missed something? I am receiving the mail so the wp_mail works.
Cheers!
...
0
votes
2answers
87 views
Wordpress $wpdb query issue
I am making a custom counter as a wordpress plugin and I hav a little problem with $wpdb
This is the query that fails:
private function getMedlemmerfromDB(){
global $wpdb, $table_prefix;
...
0
votes
0answers
36 views
Show comment meta with post in post query
I have extended out the comments function of WordPress to include fields for three different ratings:
Performance
Price
Overall Rating
I'd query my posts by category and retrieve the overall ...
0
votes
1answer
63 views
MySQL select field from table with criteria
My MySQL skills are poor so sorry for posting such an easy question!
I've got a table with one row where coupon_code = discountmail . I now want to select that row and get the value of value. Why ...
0
votes
3answers
44 views
I can't execute custom query in wordpress
I have a problem, I write a query like this
$query = "SELECT DISTINCT wp_posts.* FROM wp_posts, wp_postmeta WHERE wp_posts.ID = wp_postmeta.post_id";
When I run it directly in my database, there is ...
0
votes
1answer
108 views
WordPress $wpdb->insert() not working on Server
I have the following code which working in localhost but not working on real server.
include_once('/home/engforum/public_html/wp-load.php');
global $wpdb, $table_prefix;
$table = $table_prefix . ...
0
votes
0answers
39 views
Error with the sprintf() function in wpdb class
When i try to run my PHP application, i get an error:
Fatal error: Call to undefined function __() in J:\sambit\UniServer\www\bbplan_console\inc\wp-db.php on line 1499
the code in line 1499 is:
...
0
votes
0answers
143 views
Wordpress Get all attachments from custom post-type and custom term
I have all the attachments from a custom post type, is fine, but now I also want the attachments for a custom term.
I tried this query with a custom term 'architecture':
global $wpdb;
$query = ...
0
votes
1answer
71 views
Select custom meta (WPAlchemy) from pages with wpdb
I have read some documentation and comparable questions from others about my issue with wpdb, but I've seen very different answers so I'm slightly confused.
What I'm trying to do is get custom meta ...
0
votes
1answer
80 views
Keep losing the database in wordpress
I have a long PHP script (lasting maybe 10 minutes and involving a lot of curl calls) that I run either as as Cron job or directly. I'm using the $wpdb global variable to make SQL calls and I keep ...
0
votes
2answers
70 views
How to check if content is already in the database and if it not then enter it?
I've made a simple php class that extracts the daily horoscope of a astrological sign from astrology.com and i want to use it inside wordpress (using $wpdb).
Working principle (in theory):
check if ...
0
votes
1answer
60 views
Related Posts In Wordpress - Excluding Current Post
I am currently using a custom query to grab related posts. However I was curious if there is a way to not grab the current post I am currently on. My only thought is to use the ID of the post and ...
0
votes
1answer
167 views
$wpdb->get_row not working on a single page. 500 Internal Server Error
I constantly get 500 Internal Server Error while trying to query a db. The data is passed by Ajax to that specific page.
Here is the code:
<script type="text/javascript">
...
1
vote
2answers
63 views
How to retrieve variable from $wpdb object in Wordpress/PHP
I have been trying to access this variable for several hours now.
It is shown in the object $wpdb->last_result->[0]->pid
$pid = $wpdb->last_result[0]->pid;
I can get one of the ...
0
votes
1answer
76 views
data not submitted by this code in wordpress
This is php of my form and i want to use it in wordpress would anybody help me to solve this? i m new to wordpress its not submiting any data to table give some action path to the form i dont know ...
0
votes
7answers
169 views
i want to Delete where id=$POST['id'] in php mysql
My code for delete entry is this but its not doing anything
HTML
<form id="form3" name="form3" method="post" onsubmit="return validateForm();" action="">
Id <input type="text" ...
0
votes
2answers
176 views
WordPress $wpdb and paginate links
I'm am trying to paginate a set of results from a database query using $wbdb class. I've got it to paginate but I"m getting some freaky results and I'm not sure if this is normal. The code is printing ...
0
votes
1answer
83 views
How to convert this prepare statement to use placeholders in Wordpress $wpdb?
I have a perfectly working wpdb prepare statement before Wordpress 3.5. This is my line:
$post_id = $wpdb->get_var($wpdb->prepare( "SELECT a.post_id
FROM $metatable AS a
JOIN ...
4
votes
1answer
459 views
Wordpress $wpdb->get_results returns only one row
I'm totally confused.
I run 2 the same queries, one with $wpdb, the other via mysql_query (also checked via phpmyadmin)
First query returns ONLY ONE row:
$wpdb->get_results("SELECT * FROM wp_terms ...
0
votes
1answer
45 views
Wordpress prepare fails…?
Ok... I got another WP problem now.
For my WP theme, i have some special things. For example, i have a table containing some stuff.
when i insert (in this case update) to this table i use $wpdb, ...
0
votes
2answers
80 views
$wpdb MySQL select from main table and join each row with two rows of another table
$referrer is the only defined variable.
main_table holds the relationship between users and referrers. a referrer can have many users.
user_id | referrer
1 | seller
2 | abother seller
...
0
votes
0answers
35 views
wpdb search query five result from each post type
I have 3 custom post types, I am trying to build a search drop down which shows five suggestion from each post types based on the search term
I tried this Sql
SELECT post_title, post_type
FROM ...
0
votes
1answer
387 views
How to list all rows from table and display specific column data from wordpress database
I have table called wp_email_subscription and inside table i have rows of emails from subscribed users. Each row contains id, email, and name column.
I have also created admin page for plugin where ...
0
votes
0answers
575 views
Wordpress $wpdb->get_results and num_rows
I'm using the following code:
$wpdb->get_results("
SELECT * FROM " . $wpdb->prefix . "product_order
WHERE
...
0
votes
1answer
45 views
Create wordpress table, where am i going wrong?
global $wpdb;
$table_name = $wpdb->prefix . "product_order";
$sql = "CREATE TABLE $table_name (
id mediumint(9) NOT NULL AUTO_INCREMENT,
range ...
-1
votes
1answer
65 views
limit results for wpdb query
this code displays the tags from current category only but, it gets all the tags (hundreds) so, i need to limit the number of returned results and make em random.
How to make this query get only 20 ...
0
votes
1answer
108 views
Nested queries using wpdb
Im trying to display a few rows of data for each <h3><?php echo $name; ?></h3> item that appears in the loop.
With the current code it only shows one row for each item ...
0
votes
1answer
148 views
Getting Blank Page when using $wpdb in Wordpress Template
I am Trying to create a Wordpress template with custom php code which connects custom table in Wordpress database, But its showing a blank page for this code
<?php
/*
Template Name: JNTU
*/
?>
...
1
vote
0answers
299 views
$wpdb->get_results() returns good result only in first foreach iteration [closed]
I've got strange issue when I am using $wpdb->get_results() in content-single.php in twenty elevent theme. $wpdb->get_results() returns proper values only in first loop iteration. I've got simple ...
0
votes
0answers
58 views
SELECT SUM returns unexpected answer
I am wanting to sum the values in a column (meta_value) where the name in meta_key starts with 'icc_views_' (which is data, with varying name endings, saved from another function but all start the ...
1
vote
1answer
35 views
Presenting user editable fields from Wordpress Database
I'm currently in the process of writing my first Wordpress Plugin, which is extending WPmembers. Essentially, the logic flows as follows.
User logs in
Database is referenced to see if this is their ...
0
votes
1answer
81 views
$wpdb table name
I'm having problem with getting data from database via $wpdb:
function nadji_sve_statuse() {
global $wpdb, $leaguemanager;
$league = $leaguemanager->getCurrentLeague();
$svi_statusi = ...
0
votes
0answers
75 views
Wordpress: Get multiple db prefix with $wpdb
I have installed wordpress with question2answer as a single signon. The database created by wordpress with wp_ prefix and question2answer prefix is qa_
Now wordpress tables doesnt required to define ...
0
votes
0answers
50 views
Get all WP author IDs from a given category - custom query
I'm trying to get an array of author IDs, who have posted in a certain category. wp_list_authors does this (on category.php page), however it only spits out a string, with a useless link and display ...
0
votes
1answer
237 views
Using $wpdb object in Wordpress functions.php file
I have an issue with not being able to call the get_results() function on the $wpdb object inside the Wordpress functions.php file.
Exact error: Call to a member function get_results() on a ...
0
votes
2answers
180 views
how to get value of stdClass Object foreach loop
stdClass Object
(
[meta_id] => 11
[post_id] => 8
[meta_key] => wpp_gpid
[meta_value] => gpid_1124779119
)
stdClass Object
(
[meta_id] => 12
[post_id] => 8
...
2
votes
1answer
579 views
Wordpress database query ($wpdb) errors when using variables
I have a custom WordPress table on a WordPress MultiSite called "ihn_2_frm_item_metas" used for form entries.
Screenshot of database table is here: https://www.dropbox.com/s/ex54qxxohkexg5t/mysql.png
...



