0

我正在使用 wordpress 并使用以下内容将页面内容拖到 html 正文中。

<?php the_content(); ?>

它在脚本上方的任何位置都可以正常工作,但是如果我将它放在脚本之后的页面上的任何位置,它会输出就好像它是同一脚本的回显函数(我猜它是什么)。

谁能告诉我可能发生了什么以及是否有办法阻止这种情况发生。我尝试将脚本放在单独的页面中并使用 include 函数将其拉入,但这也不起作用。

<?php
$pages = array(
    0 => 'longtailtext/intro1-1.php', 
    1 => 'longtailtext/intro1-2.php'
);
srand(floor(time()/60/60/1));
$key =rand(0,count($pages)-1);
include($pages[$key]) ;
?>

将内容标签放置在脚本之后的任何位置只会输出以下内容:“longtailtext/paragraph1-1.php”

感谢您在这方面给我的任何帮助:)

4

2 回答 2

0

也许你应该使用http://codex.wordpress.org/Function_Reference/get_the_content

于 2012-04-14T01:17:45.180 回答
0

可能是导致错误的恶意插件。试试这个:http ://hungred.com/how-to/avoid-trouble-filter-thecontent-wordpress/从这里

于 2012-04-12T17:12:19.563 回答