php Wordpress - 使用WP All Import Pro将图像导入帖子时插入图库的短代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Wordpress - 使用WP All Import Pro将图像导入帖子时插入图库的短代码相关的知识,希望对你有一定的参考价值。
add_action('pmxi_saved_post', 'update_gallery_ids', 10, 3);
function update_gallery_ids($id) {
$attached_images = get_attached_media( 'image', $id );
// Prepare images into array
$arr = array();
foreach($attached_images as $image)
array_push($arr, $image->ID);
// Prepare shortcode
$string = '<p>[gallery ids="'. implode(", ",$arr) . '"]</p>';
// Prepare post for updating
$content_post = get_post($id);
$content = $content_post->post_content;
$my_post = array();
$my_post['ID'] = $id;
$my_post['post_content'] = $content . $string;
// Save post
wp_update_post( $my_post );
}
以上是关于php Wordpress - 使用WP All Import Pro将图像导入帖子时插入图库的短代码的主要内容,如果未能解决你的问题,请参考以下文章
在 WordPress (wp-load.php) 之外使用 WordPress:“无法修改标头信息 - 标头已发送”
如何安装wordpress?
如何访问 http://localhost/wordpress/wp-admin/install.php?
如何在不使用 wp-login.php 的情况下从 wordpress 注销?
防止在错误版本的 PHP 或 WP 上激活 Wordpress 插件
php WP Config模板#php #wp #wordpress #config