这里是网站http://ariadneswonderland.gr/ 这一切都很重要。
在主页上,我正在使用图库下的下拉阴影框插件显示一系列特色帖子的图像,截至目前,由于我仍在创建网站,你所看到的只是图库下的白色框和其中的表情符号。。
What i\'d like is to be able to do is have some code that pulls the 5 lastest posts from a category (in this case frontpage id 7) and Displays the Featured Post Image next to each other.
代码:
=============
=X X X X X=
其中X是自动检索的特色帖子图像,而无需每次我想更改特色时都检索和添加链接。=是自动生成的[dropshadowbox]。
如果您有任何想法/代码/snipet/插件可以使用,我们将不胜感激。
到目前为止,我想到的只是这个,但我不知道如何在帖子中实现php,phpexec和类似的插件似乎不适用于此,尽管很简单,比如echo test;
工作正常。把它变成一个函数是行不通的,因为它似乎不会返回任何东西:很明显,我需要更多的编码经验,但从现在起,我只想完成这个网站。
PHP Code:
// fetching latest posts from specific category
$categoryId = 7;
$args = array(\'category\' => categoryId , \'post_status\' => \'publish\', \'numberposts\' => 5);
$posts = get_posts( $args );
foreach($posts as $post){
$feat_image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
$post_url = get_permalink($post->ID);
}