Danielnn
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: Get Featured images URLOkay, but how do I call it with Buffy $buffy .=’ . $this->???????? . ‘
Could you write me the function and the call?
Forum: Plugins
In reply to: [WP RSS Multi Importer] Only one image showingThank You! It is working now
Forum: Plugins
In reply to: [WP RSS Multi Importer] Only one image showingI think my theme places the featured image at the top of the post. Maybe i only get the featured image. Maybe there is a setting I am missing.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Only one image showingAutoposting
Forum: Plugins
In reply to: [WP RSS Multi Importer] Only one image showingForum: Plugins
In reply to: [WP RSS Multi Importer] Only one image showingYes, there is more than one image in the feed.
Forum: Plugins
In reply to: [Video Thumbnails] Get thumbnail when saving draft// Add actions to save video thumbnails when saving Draft
add_action(‘save_post’, ‘save_draft_video_thumbnail’, 100, 1);function save_draft_video_thumbnail($post_id) {
$postdata = get_postdata($post_id);
if ($postdata[‘post_status’] == ‘draft’) {
get_video_thumbnail( $post_id );
}
}
Viewing 7 replies - 1 through 7 (of 7 total)