0

如何在此 php 代码中获取 WordPress 帖子的标题

 <?php include("imdb.php");   $imdb = new Imdb(); $movieArray =
 $imdb->getMovieInfo("**.get_the_title().**"); echo '<table
 cellpadding="3" cellspacing="2" border="1" width="80%"
 align="center">'; foreach ($movieArray as $key=>$value){
     $value = is_array($value)?implode("<br />", $value):$value;
     echo '<tr>';
     echo '<th align="left" valign="top">' . strtoupper($key) . '</th><td>' . $value . '</td>';
     echo '</tr>'; } echo '</table>'; ?>

我试图输入".get_the_title()."但没有得到当前帖子的标题。

4

2 回答 2

1

我假设您的代码在 wordpress 循环中,所以您只需要使用:

$imdb->getMovieInfo(get_the_title());

使用$imdb->getMovieInfo("**.get_the_title().**");不起作用,因为 PHP 不处理字符串中的函数:http ://www.php.net/manual/language.types.string.php

于 2012-10-09T07:23:42.153 回答
0

get_the_title()$id如果您不在循环中,函数要求您传递它。如果您在循环中,并且想要使用当前帖子的 id 来获取标题,那么您可以调用该函数而不传递任何内容。

get_the_titlethe_loop

于 2012-10-09T07:24:18.297 回答