-
Anonymous
Как установить избранное изображение для публикации из Медиа-библиотеки
Сообщение
Anonymous »
Если я создам сообщение с этой функцией:
Код: Выделить всё
function write_post_with_featured_image( $post_title, $categories ) {
$category_names_array = explode( ",", $categories );
$category_ids = array( );
foreach ( $category_names_array as $category_name ) {
$category_id = get_cat_ID( $category_name );
array_push( $category_ids, $category_id );
}
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $post_title ),
'post_status' => 'publish',
'post_author' => 1,
'post_category' => $category_ids,
);
// Insert the post into the database
$post_id = wp_insert_post( $my_post );
echo "post_id: " . $post_id;
}
Как установить избранное изображение, уже существующее в медиатеке?
Подробнее здесь:
https://stackoverflow.com/questions/508 ... ia-library
1732838134
Anonymous
Если я создам сообщение с этой функцией:
[code]function write_post_with_featured_image( $post_title, $categories ) {
$category_names_array = explode( ",", $categories );
$category_ids = array( );
foreach ( $category_names_array as $category_name ) {
$category_id = get_cat_ID( $category_name );
array_push( $category_ids, $category_id );
}
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $post_title ),
'post_status' => 'publish',
'post_author' => 1,
'post_category' => $category_ids,
);
// Insert the post into the database
$post_id = wp_insert_post( $my_post );
echo "post_id: " . $post_id;
}
[/code]
Как установить избранное изображение, уже существующее в медиатеке?
Подробнее здесь: [url]https://stackoverflow.com/questions/50868477/how-to-set-the-featured-image-of-a-post-from-the-media-library[/url]