将附件图像链接到类别

时间:2011-02-14 作者:Mark

如何将附件图像链接到其类别?

function wp_attachment_image($size = thumb) {
    if($images = get_children(array(
        \'post_parent\'    => get_the_ID(),
        \'post_type\'      => \'attachment\',
        \'numberposts\'    => -1, // show all
        \'post_status\'    => null,
        \'post_mime_type\' => \'image\',
    ))) {
        foreach($images as $image) {
            $attimg   = wp_get_attachment_image($image->ID,$size);
            $atturl   = wp_get_attachment_url($image->ID);
            $attlink  = get_attachment_link($image->ID);
            $postlink = get_permalink($image->post_parent);
            $atttitle = apply_filters(\'the_title\',$image->post_title);

            echo \'<a href="\'.$postlink.\'">\'.$attimg.\'</a>\';
        }
    }
}
wp_attachment_image(\'thumb\');

1 个回复
SO网友:Bainternet

我发了一条短信how to add extra fields to categories 完成后,您可以使用附件URL或附件ID链接附件。

结束

相关推荐

在WordPress中筛选分类术语的Get_Categories()

我只想在(自定义)帖子属于某个类别且region=该帖子的$name时显示该类别。因此,例如,我有一个自定义帖子(类型“business”),在子类别“pizzerias”(父类别“food”)和区域“Rotterdam”(自定义分类:“region”,自定义分类术语:“Rotterdam”)中分别命名为“Mamma Mia”。=>显示类别“pizzerias”(和父类别“food”)只是,我不知道如何做到这一点。如果你能帮我解决这个难题,我将不胜感激。<?php // $