作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有带有内容和图片库的 wordpress 页面。当我打印我的内容时,它显示如下
stdClass Object
(
[ID] => 4558
[post_author] => 1
[post_date] => 2011-09-22 05:34:44
[post_date_gmt] => 2011-09-22 05:34:44
[post_content] =>
Nayer has pursued her passion for art since childhood.
She believes that art should have a positive influence in the world and on our life experiences.
She studied in Persia at Tehran University and at California State University, Los Angeles.
[gallery link="file" columns="2"]
[post_title] => About the Water Artist
[post_excerpt] =>
[post_status] => publish
[comment_status] => open
[ping_status] => open
[post_password] =>
[post_name] => about-the-water-artist
[to_ping] =>
[pinged] =>
[post_modified] => 2011-11-22 04:59:58
[post_modified_gmt] => 2011-11-22 04:59:58
[post_content_filtered] =>
[post_parent] => 0
[guid] => http://nagu.wordpress.net/?page_id=4558
[menu_order] => 0
[post_type] => page
[post_mime_type] =>
[comment_count] => 0
[ancestors] => Array
(
)
[filter] => raw
)
最佳答案
我使用下面的代码从图库短代码中提取图像,它正在工作。
<?php
global $post;
global $wp_query;
$currentPageCatId = get_cat_ID( "pagename" );
$NewsCatPostsArray = query_posts( 'cat='.$currentPageCatId);
$current_news_postId = $NewsCatPostsArray[$i]->ID;
$current_news_postUrl = get_permalink($current_news_postId);
$query_images_args = array('post_type' => 'attachment', 'post_mime_type' =>'image', 'post_status' => 'inherit', 'posts_per_page' => -1,'post_parent' => $current_news_postId);
$query_images = new WP_Query($query_images_args);
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= $image->guid;
}
?>
关于wordpress - 如何从wordpress中的图库简码获取图库图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8222726/
我正在使用 Bootstrap 日期时间选择器。我想要 datetimepicker 格式作为短月份名称,例如。 一月。我的代码在下面,它现在显示完整的月份名称为 January。如何让它成为 Jan
注意:这篇博客已经和当前的分页插件完全不一样了,所以建议大家通过上面项目地址查看最新的源码和文档来了解。 以前为Mybatis分页查询发愁过,而且在网上搜过很多相关的文章,最后一个都没采用。在分页
我是一名优秀的程序员,十分优秀!