我正在尝试根据附件标题选择一些附件。我需要为一个单独的下载页面这样做。在下载页面上,我想显示标题等于“下载”的所有附件。这样我就可以选择可以下载也不能下载的帖子附件
目前,我有这个代码来选择所有附加的pdf作为可下载文件,但我喜欢选择一些附加的图像并取消选择一些pdf。
$args = array(\'post_parent\' => $atts[\'product_id\'],
\'post_status\' => \'inherit\', \'post_type\' => \'attachment\',
\'post_mime_type\' => \'application/pdf\', \'order\' => $order, \'orderby\' => $orderby);
$attachments = get_posts($args);
//print_r($attachments);
$i = 1;
foreach ($attachments as $attachment) {
...
$attachment->guid
我还可以根据给定的缩略图名称选择图像
wp_get_attachment_image($attachment->ID,\'product-slider-thumbnail\')
但如何根据标题进行选择??
当做