在摘录后显示自定义帖子代码

时间:2016-07-16 20:46:35

标签: php wordpress wordpress-theming

我正在建立一个网站,用于在每个帖子中发布表格。为此,我编写了一个自定义的邮政编码,使用户只需使用ACF和数据库中的数据即可创建表格。

问题是我想在每个帖子的摘录中显示该表,但我只得到WP Post中写的帖子文本,由最终用户编写。

现在我已经这样设置了:

    <!-- Blog Content -->

    <?php echo $current_post['content']; 

    //Start my custom table code (HTML + PHP)?>
    <table style="undefined;table-layout: fixed; width: 100%">
    .
    .
    .
    .
    .
    .         
    </table>                

    <?php
    //End my custom table code
    ?>

现在,只有最终用户写的内容($ current_post ['content'])会在摘录中显示,而在完整的帖子预览中,我的自定义表格会正常显示。

解决此问题的最佳方法是什么? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

$head1Title = $_POST['postTitle'];
$text = $_POST['postText'];
<table> 
<tr> <th><?php echo $head1Title; ?> </th> </tr>
<tr> <td> <?php echo $text; ?></td></tr>

</table>

也许试试这个例子?