从wordpress图库中获取一系列照片

时间:2012-03-23 09:43:19

标签: wordpress gallery

您知道是否有任何插件或教程描述了如何操作?我会非常感谢任何帮助,因为我不擅长PHP。

我想在Wordpress页面上添加照片并将其作为标准图库粘贴到帖子内容中,然后我想避免显示图库,但我感兴趣的是在该图库中获取一系列照片然后迭代它。

它是为了什么?我正在开发一个网站http://www.rasterbyte.com/,我想将这些图像用作背景幻灯片(按左/右键更改图片)。目前图像具有固定路径,我希望它们可以为每个页面进行自定义。

非常感谢您的任何建议。

1 个答案:

答案 0 :(得分:0)

嗨Maciek Simm,

正如我理解你的问题,你在帖子中有图像,你想在后台显示。

您可以设置主页类别有5个帖子和特色图片。

了解特定的帖子图片

<?php $args = array(
    'width' => null,
    'height' => null,
    'css' => '',
    'parent_id' => '',
    'post_id' => '',
    'filename' => '',
    'return_html' => true       
); ?>

more info

 

同时检查How to: Get the first image from the post and display it

function catch_that_image() {
  global $post, $posts;
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
  $first_img = $matches [1] [0];

  if(empty($first_img)){ //Defines a default image
    $first_img = "/images/default.jpg";
  }
  return $first_img;
}