我是github的新手.我在那里注册了我的名字,我不是铁轨开发人员,但我想学习Ruby on Rails.
有人知道它的基本教程,用于创建Ruby on Rails应用程序,执行它们等
提前致谢
我是wordpress的新手.我的帖子有问题.我想在主页上显示一个类别的最新4个帖子,但它显示了5个帖子,因为我添加了5个帖子.
这是我的代码:
<div id="from-categories" class="clearfix">
<?php
$catName='HomePost';
$cat_ID=get_cat_ID($catName);
$args = array( 'numberposts' => 4, 'post_status' => 'publish', 'post_type' => 'post', 'orderby' => 'post_date', 'category' => $cat_ID);
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post); ?>
<div class="recent-cat">
<h4 class="title"><?php the_title(); ?></h4>
<p><?php the_excerpt(); ?> </p>
<a href="<?php the_permalink(); ?>" class="readmore">Read More</a>
</div>
<?php endforeach; ?>
</div> <!-- end #from-categories -->
Run Code Online (Sandbox Code Playgroud)
请告诉我这段代码有什么问题.提前致谢.