不太确定'php'是否与它有关。请查看http://iamwhitebox.com/staging/arkitek/#press
我的页面上有一个默认选项卡,显示按日期排序的2篇博文。 但是当我在菜单中点击它时它不会出现,我把它包括在内 在两个不同的地方,是否有更简单的方法来实现这一目标?我知道有
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('/home/whiteb0x/iamwhitebox.com/staging/arkitek/blog/wp-blog-header.php');
query_posts('cat=3&showposts=2');
?>
<article class="blog-feed">
<?php while (have_posts()): the_post(); ?>
<!-- begin post -->
<div class="blog-title">
<div class="blog-date">
<?php the_time('m.j.Y'); ?>
</div>
<strong><a class="blog-link" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>">
<?php the_title(); ?>
</a></strong>
</div>
<a class="blog-link" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>">
<div class="blog-thumbnail"><?php the_post_thumbnail( array(80,80) ); ?></div><?php the_content(); ?>
</a>
<div class="clearfix"></div>
<?php endwhile; ?>
</article>
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('/home/whiteb0x/iamwhitebox.com/staging/arkitek/blog/wp-blog-header.php');
query_posts('cat=3&showposts=2');
?>
<!DOCTYPE html>
<html>
<head></head>
<body>
<ul>
<li id="current_news">
<?php
echo "HELLO";
?>
**<?php
require('post.inc')
?>**
答案 0 :(得分:3)
post.inc
是否以<?php
开头?
如果您希望代码在包含时执行,那么您的包含文件必须具有此功能。