我尝试访问此网站Working laravel 4 and 5 and WordPress together,但还有一件事我完全没有登录我的刀片页面。我想在我的Laravel页面上发布我的文章,与" foreach"和标准的WordPress语法。我仍然得到一个错误。这是我的代码。
我在网站上关注此内容。
class CreicController extends BaseController {
public function index()
{
$query = new WP_Query(array(
'post_type' => 'posts',
'post_per_page' => 4,
'order' => DESC,
));
$posts = $query->get_posts();
return View::make('layouts.creic')->with('posts', $posts);
}
}
我想使用foreach到我的刀片页然后我迷路了(我试图复制并在PHP中做一些事但没有运气)。
这是我在Laravel之前的旧PHP
<!-- Start Articles -->
<?php
$posts = get_posts('numberposts=4&order=desc');
foreach ($posts as $post) : setup_postdata( $post );
?>
<artcile class="col-xs-12 col-sm-12 col-md-6 article-section">
<div class="media">
<div class="media-left">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail( array(80,80, true) ); ?>
</a>
</div>
<div class="media-body">
<h4 class="media-heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<time datetime="2015-2-23T01:30:08Z" title="February 23, 2015" class="timeago"></time>
</div>
</div>
</artcile>
<?php endforeach; ?>
<!-- End Articles -->