2,518 reputation
112
bio website
location Vancouver, BC
age
visits member for 4 months
seen 22 hours ago
stats profile views 132

Jun
16
revised meta_value and meta_key filtering returning no posts
added 24 characters in body
Jun
13
answered save post running twice and creating two database entries - how do I disable this?
Jun
7
comment Not able to put link on featured image
What does the_permalink() return?
Jun
7
comment $wpdb->update Issue
You might want to turn on debugging to avoid that white screen. It makes life much easier.
Jun
6
comment Using mysql queries to delete custom post types based on meta_value
If that's your SQL, it's not working because there are no fields called meta_key and meta_value in wp_posts.
May
30
comment Apostrophe and hyphen removed from title
"instead of something like"... what?
May
29
comment Options and template changes not updating
Do you have a caching plugin active?
May
29
comment Which action for triggering cron “wp”or “init”?
Plugins are deactivated/reactivated on update through admin. The fact that a plugin is in development is no excuse for poor coding.
May
23
answered Which action for triggering cron “wp”or “init”?
May
13
comment Re writing Category Argument
I would do this in a child theme, otherwise your changes would be overwritten next time the theme is updated.
May
13
answered List the categories under custom taxonomy
May
10
answered Re writing Category Argument
May
10
comment List the categories under custom taxonomy
Does it output empty markup (li,a), or absolutely nothing?
May
10
revised Returning error upon comment being flagged as spam
added 1 characters in body
May
9
revised Returning error upon comment being flagged as spam
added 21 characters in body
May
9
answered Returning error upon comment being flagged as spam
May
9
awarded  Student
May
9
answered Shortcode is displaying the wrong post_title
May
9
comment Post migration - images do not display
Have you triple checked that the images exist on the new server?
May
9
comment WP_Query of a custom post type isn't working
This isnt a WP question - this is just bad PHP syntax. /*display the faq question */ $output .= post_title() , will error - why is the comma there? Your whole code is also missing a closing bracket. And why are you nesting functions at all?