I use this code for upload image :
function Generate_Featured_Image( $image_url, $post_id ){
$upload_dir = wp_upload_dir();
$image_data = file_get_contents($image_url);
$filename = basename($image_url);
if(wp_mkdir_p($upload_dir['path']))
$file = $upload_dir['path'] . '/' . $filename;
else
$file = $upload_dir['basedir'] . '/' . $filename;
file_put_contents($file, $image_data);
$wp_filetype = wp_check_filetype($filename, null );
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => sanitize_file_name($filename),
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $file, $post_id );
require_once(ABSPATH . 'wp-admin/includes/media.php');
require_once(ABSPATH . 'wp-admin/includes/file.php');
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $file );
$res1 = wp_update_attachment_metadata( $attach_id, $attach_data );
$res2 = set_post_thumbnail( $post_id, $attach_id );
}
And this code for manual size :
if(function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
add_image_size('test', 260, 380, true);
}
If I upload from wordpress admin, test
size make correct
But with my code, test
size not make and show original size
I use this code for upload image :
function Generate_Featured_Image( $image_url, $post_id ){
$upload_dir = wp_upload_dir();
$image_data = file_get_contents($image_url);
$filename = basename($image_url);
if(wp_mkdir_p($upload_dir['path']))
$file = $upload_dir['path'] . '/' . $filename;
else
$file = $upload_dir['basedir'] . '/' . $filename;
file_put_contents($file, $image_data);
$wp_filetype = wp_check_filetype($filename, null );
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => sanitize_file_name($filename),
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $file, $post_id );
require_once(ABSPATH . 'wp-admin/includes/media.php');
require_once(ABSPATH . 'wp-admin/includes/file.php');
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $file );
$res1 = wp_update_attachment_metadata( $attach_id, $attach_data );
$res2 = set_post_thumbnail( $post_id, $attach_id );
}
And this code for manual size :
if(function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
add_image_size('test', 260, 380, true);
}
If I upload from wordpress admin, test
size make correct
But with my code, test
size not make and show original size
1 Answer
Reset to default 0I see 2 problems in your last part.
- You didn't add hook for the code. Without it, I doubt that the
add_image_size
function will be executed. I suggest you wrap it in another function and add toafter_setup_theme
hook withadd_action
function. - I think the way you use
function_exists
is unnecessary. With the way you set that conditional block, it will always true because add_theme_support is a built-in core function.
Here is my suggestion code.
if( !function_exists('theme_setup') ) {
function theme_setup() {
add_theme_support('post-thumbnails');
add_image_size('test', 260, 380, true);
}
add_action('after_setup_theme', 'theme_setup');
}
It's actually quite common way to interact your theme/plugin with WordPress core.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745122876a4612517.html
评论列表(0条)