我正在编写一个插件,您可以在其中在页面中输入一个简码,并且它会显示一个数据表。
但是,将短代码之前的页面内容随机插入表的中间。当我刷新页面时,在简码上方键入的内容会在简码生成的表中随机移动。
简码下的内容不会出现在简码返回中。
有人知道为什么会这样吗?这真是太奇怪了。
------------------ wordpress页面编辑---------------
这里有一些内容。
这是另一段。
[view_contributions]
页面内容结尾。
------------------ WordPress页面编辑结束------------------------ ----
然后产生
------显示--------
[带有“这是一些内容。这是另一段”的简码数据表。随机插入某个单元格中的某个位置。然后是更多数据表]
页面内容结尾。
--------显示结束-----
这太奇怪了。好像简码先渲染,然后WordPress将页面内容注入简码要渲染的内容。有什么想法会导致这种情况吗?
编辑:添加了完整的代码,以防万一真的发生了奇怪的事情……
function soco_view_contributions_shortcode() {
$view_contributions = Soco_Contributions::soco_display_contributions();
return $view_contributions;
}
add_shortcode( 'view_contributions', 'soco_view_contributions_shortcode');
public function soco_display_contributions() {
$contribution_results = Soco_Contributions::soco_get_contributions_view();
ob_start;
?>
<div name="div-output-container">
<form name="frm-search-contributions">
<table width="100%" border="0">
<tbody>
<tr>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
<th scope="col">Minimum</th>
<th scope="col">Maximum</th>
<th scope="col">Name</th>
<th scope="col">Event</th>
</tr>
<tr>
<td><input type="date" name="start-date"></td>
<td><input name="end-date" type="date" ></td>
<td><input type="number" name="low-number"></td>
<td><input type="number" name="high-number"></td>
<td><text name="txt-auto-name"> </textarea></td>
<td><select> </select></td>
</tr>
</tbody>
</table>
<input type="submit">
<input type="reset">
</form>
<table width="100%" border="0">
<tbody>
<tr>
<th scope="col">Date</th>
<th scope="col">Amount</th>
<th scope="col">Cycle</th>
<th scope="col">Name</th>
<th scope="col">Event</th>
</tr>
<?php foreach ($contribution_results as $cr) { ?>
<tr>
<td><?php echo $cr->contribution_date ?></td>
<td><?php echo $cr->amount ?></td>
<td><?php echo $cr->cycle_amount ?></td>
<td><?php echo $cr->last_name.', '.$cr->first_name ?></td>
<td> </td>
</tr>
<?php } ?>
</tbody>
</table>
<button name="btnDownload" id="btnDownload" title="Click this button to download the above dataset." >Download CSV File</button>
</div>
<?php
$contribution_output = ob_get_clean();
return $contribution_output;
}
答案 0 :(得分:1)
似乎您正在尝试将输出缓冲区作为字符串返回。调用ob_start()时,所有输出都会被抑制,直到从逻辑上调用ob_end(),ob_end_flush()或ob_end_clean()为止,您无法将其返回。只需在函数本身中调用它们,然后将contents of the output buffer( ob_get_contents())作为字符串返回:
add_shortcode('view_contributions','soco_view_contributions_shortcode');
function soco_view_contributions_shortcode( ) {
ob_start();
?>
<h1>Shortcode Output</h1>
<p><?php echo "Some other output" ?></p>
<?
return ob_end_clean();
}
为什么当尝试从函数返回整个缓冲区时,PHP不会引发致命错误。
答案 1 :(得分:0)
问题出在输出缓冲区中混用了ECHO和RETURN。为了解决这个问题,我将整个事情变成了一个串联的字符串来输出。
我认为foreach循环中的回声搞砸了输出缓冲区。所以我一起删除了ob_start,只会输出最终的HTML字符串。
这不是一个很好的解决方案,但至少它现在正在运行,并且不会产生随机结果。如果有人对如何将ob_start与php逻辑混合使用提出建议或示例,那将很棒。对我来说,ob_start()出现问题似乎很奇怪。
$contribution_output = '<div name="div-output-container">
<form name="frm-search-contributions">
<table width="100%" border="0">
<tbody>
<tr>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
<th scope="col">Minimum</th>
<th scope="col">Maximum</th>
<th scope="col">Name</th>
<th scope="col">Event</th>
</tr>
<tr>
<td><input type="date" name="start-date"></td>
<td><input name="end-date" type="date" ></td>
<td><input type="number" name="min-amount"></td>
<td><input type="number" name="max-amount"></td>
<td>
<input type="text" name="donor_name">
<input type="hidden" name="hdn-donor-id" value="">
</td>
<td><select> </select></td>
</tr>
</tbody>
</table>
<input type="submit">
<input type="reset">
</form>
<div name="contribution-results-container" >
<table width="100%" border="0">
<tbody>
<tr>
<th scope="col">Date</th>
<th scope="col">Amount</th>
<th scope="col">Cycle</th>
<th scope="col">Name</th>
<th scope="col">Event</th>
</tr>';
foreach ($contribution_results as $cr) {
$contribution_output .= '
<tr>
<td>'.$cr->contribution_date.'</td>
<td>'.$cr->amount.'</td>
<td>'.$cr->cycle_amount.'</td>
<td>'.$cr->last_name.', '.$cr->first_name.'</td>
<td> </td>
</tr>';
}
$contribution_output .= '</tbody>
</table>
<button name="btnDownload" id="btnDownload" title="Click this button to download the above dataset." >Download CSV File</button>
</div>
</div>';