一个可以附加到页面的简单 WordPress 画廊?

发布于 2024-11-19 12:17:31 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

触ぅ动初心 2024-11-26 12:17:31

我不知道这样的插件,但我可以建议一种解决方案。

   <?php
   if(is_page) {
      global $post;
      $images = get_children('post_type=attachment&post_mime_type=image&post_parent=' . $post->ID );

      foreach($images  as $image ) {
         echo wp_get_attachment_image($image->ID);
      }
   }
   ?>

上面的代码返回当前页面的所有附加图像(来自图库)。

I dont know such plugins, but I can suggest one solution for that.

   <?php
   if(is_page) {
      global $post;
      $images = get_children('post_type=attachment&post_mime_type=image&post_parent=' . $post->ID );

      foreach($images  as $image ) {
         echo wp_get_attachment_image($image->ID);
      }
   }
   ?>

Above code return all attached images (from gallery) of current page.

智商已欠费 2024-11-26 12:17:31

我是否遗漏了什么,或者您只是想要[gallery]短代码? (将 [gallery] 添加到帖子文本中您想要显示相关图像的位置...)

Am I missing something, or do you just want the [gallery] shortcode? (Add [gallery] to the text of your post in the place you want the related images displayed...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文