如何在此 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()."
但没有得到当前帖子的标题。