beakid
Forum Replies Created
-
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Add category field to Edit/Submit Campaign?Also interested in how this was solved. @dlt0rre ?
Forum: Plugins
In reply to: [Co-Authors Plus] Assigned co-author cannot edit postSame problem here. Seems a lot of us have this problem. Daniel Bachhuber and his people should really take a look at this imo.
Using WP 3.9.1 here with Co-Authors Plus 3.1.1.
EDIT: Only the first person in the author list is able to view the post in the dashboard. It is however possible to edit the post if you have the url to it ( like http://mysite.com/wp-admin/post.php?post=263&action=edit )
Forum: Plugins
In reply to: [Member Access] [Plugin: Member Access] Cannot access the settings pageHave the same issue. Quite ironic 😀
Forum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?$thumbail_id in row 2 is obviously a misprint btw 😛
Forum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?There is already a built-in function to do what you want. No need for regexp and other dirty solutions.
$thumbnail_id = get_post_thumbnail_id($post->ID);
$thumbnail_object = get_post($thumbail_id);After that you can just call things like $thumbnail_object->guid (this is the src to the image) and $thumbnail_object->post_title. Try running an print_r($thumbnail_object) and you’ll see what other goodies are stored there 🙂