You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"habari": "select posts.title, posts.pubdate as date, posts.content as body, users.username as author from [PREFIX]posts as posts, [PREFIX]users as users where posts.user_id = users.id",
"wordpress": "select posts.post_title as title, users.display_name as author, unix_timestamp(posts.post_date) as date, posts.post_content as body from [PREFIX]posts as posts, [PREFIX]users as users where posts.post_type='post' and posts.post_author = users.id"