PHP 显示WordPress帖子附件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 显示WordPress帖子附件相关的知识,希望对你有一定的参考价值。

// place inside loop
$args = array(
	'post_type' => 'attachment',
	'numberposts' => null,
	'post_status' => null,
	'post_parent' => $post->ID
); 
$attachments = get_posts($args);
if ($attachments) {
	foreach ($attachments as $attachment) {
		echo apply_filters('the_title', $attachment->post_title);
		the_attachment_link($attachment->ID, false);
	}
}

以上是关于PHP 显示WordPress帖子附件的主要内容,如果未能解决你的问题,请参考以下文章

显示WordPress帖子的第一个图像附件

PHP 使用帖子附件的Wordpress图像库短代码

PHP Wordpress插入自定义大小的帖子附件链接到自定义大小

显示WordPress帖子附件

php 创建 zip 文件(来自 post 附件 wordpress)

如何使用 JQuery.ajax 从每个 WordPress 帖子中获取缩略图附件?