将第一张图像插入帖子(全宽)

时间:2013-02-05 作者:Andy Jonathan

我正在寻找一个简单的PHP函数,将画廊中的第一幅图像插入帖子,全幅(顺便说一句,我使用的是自定义帖子类型)。因此,语法将是:

<img src="xxxxx" />
有什么想法吗?

多谢桑迪

1 个回复
SO网友:Wyck

这就是我使用的函数,也许有更好的方法。

$attachments = get_children(
                            array(
                                  \'numberposts\' => -1,
                                  \'order\'=> \'ASC\',
                                  \'post_mime_type\' => \'image\',
                                  \'post_parent\' => get_the_ID(),
                                  \'post_type\' => \'attachment\'
                                  ));

               $first_attachment = reset($attachments);
               //$last_attachment  = end($attachments); or last image
               echo wp_get_attachment_image($first_attachment->ID, \'full\');
其他wp_get_attachment_image 此处找到的参数:http://codex.wordpress.org/Function_Reference/wp_get_attachment_image

结束

相关推荐

Use AJAX in shortcode

我有以下代码来显示随机引用的快捷码。问题:如何使按钮显示新的随机报价?我的意思是,这会点击按钮并显示一个新的报价(当然不会刷新页面)。function random_quote() { // quotes file $array = file(\"/path to txt file\"); // generate a random number between 0 and the total count of $array minus