floweringmind
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Requests and Feedback
In reply to: No-sql alternative!Damn I sure hope so. I just heard Digg moved over to nosql.
Forum: Fixing WordPress
In reply to: Get all roles when you aren’t logged into the systemThis is how I got the info:
[code]
$value = $wpdb->get_results("SELECT option_value FROM wp_options WHERE option_name = 'wp_user_roles'");$value = get_option('wp_user_roles');
[/code]Forum: Fixing WordPress
In reply to: Get all roles when you aren’t logged into the systemThanks!
Forum: Plugins
In reply to: Get media info based on media idI figured it out. By the way I am using the attachment plugin but wanted the title and description of the image so that I didn’t have to re-enter it every time.
$querystr = “SELECT wposts.* FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = “.$attachments[$i][‘id’];
$pageposts = $wpdb->get_results($querystr, OBJECT);
echo $pageposts[0]->post_title;
echo $pageposts[0]->post_content;Forum: Themes and Templates
In reply to: Sidebar is not appearing, need help.The path to the images were wrong on sub pages.
Viewing 5 replies - 1 through 5 (of 5 total)