PHP 从Wordpress上发布附加图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从Wordpress上发布附加图像相关的知识,希望对你有一定的参考价值。
<?php function postimage($size=thumbnail, $qty=-1) {
if ( $images = get_children(array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'numberposts' => $qty,
'post_mime_type' => 'image',)))
{
foreach( $images as $image ) {
$attachmenturl=wp_get_attachment_url($image->ID);
$attachmentimage=wp_get_attachment_image( $image->ID, $size );
echo '<li><a href="'.$attachmenturl.'" rel="shadowbox[photos]">'.$attachmentimage.'</a></li>' . "\n";
}
} else {
echo "No Image";
}
} ?>
以上是关于PHP 从Wordpress上发布附加图像的主要内容,如果未能解决你的问题,请参考以下文章
将图像附加到 Wordpress XMLRPC 中的帖子
wordpress-从附加到post的图像自动创建灰盒图像集
从Wordpress上的Post获取附加图像
从 Wordpress 媒体库中获取单个特定图像
从 php 提供图像时如何防止脚本名称附加到图像文件扩展名
从 WordPress function.php 调用函数到 page-home.php