gpt4 book ai didi

php - Wordpress 类别 ID 与评估问题

转载 作者:行者123 更新时间:2023-11-30 23:43:17 24 4
gpt4 key购买 nike

好吧,这有点复杂。我正在创建一个插件,并希望从帖子页面找到类别 ID。

这是简单的部分。

复杂的是我在 ob_start 中执行此操作(在“template_redirect”操作中启动),因为我想在将整个页面返回到浏览器之前对其进行编辑。同样,通过 ob_start 函数也很容易。

有了返回的 ID,我想评估存储在 sql 字段中的一些 php。我正在尝试从 ob_start 函数中执行此操作

$tui_cifp_insertvalue = tui_cifp_evaluate_html($tui_cifp_insertvalue);

这叫这个

function tui_cifp_evaluate_html($string) {
return preg_replace_callback("/(<\?php|<\?|< \?php)(.*?)\?>/si",'EvalBuffer', $string);
}

依次调用

function EvalBuffer($string) {
ob_start();
eval("$string[2];");
$ret = ob_get_contents();
ob_end_clean();
return $ret;
}

我正在尝试评估的 php 是。

<?php tui_findPostThumbIMG([categoryID],100,100,'categoryintro-thumbnail','','',''); ?>

这一切都在 ob_start 例程之外工作,但在这里即使是简单的 php 也不起作用。在 ob_start 例程中,插件中断并返回空白页。

所以我想我可以在 ob_start 开始之前评估 php 并将结果通过全局变量传递。这行得通,但在开始使用以下内容时,类别 ID 不可用。

if ( strpos($_SERVER['REQUEST_URI'], 'wp-admin') === false ) {

global $holdvalue;

$tui_cifp_insertvalue = get_option('tui_cifp_insertvalue');

$categories = get_the_category();
$categoryID = $categories[0]->cat_ID;

$tui_cifp_insertvalue = str_replace("[categoryID]", $categoryID, $tui_cifp_insertvalue);

$holdvalue = tui_cifp_evaluate_html($tui_cifp_insertvalue);

add_action('template_redirect','tui_cifp_ob_start'); //

}

ob_start函数

function tui_cifp_ob_start()
{

ob_start('tui_cifp_templatefilter');

}

好吧,我很难过......有什么想法吗?

我要么需要找到一个在正确时间执行的 Hook ,以便我可以访问类别 ID,要么我需要弄清楚如何在 ob_start 期间评估 php。

哦……我想我应该说。我想要做的是用保存在字符串中的其他一些信息替换 wordpress 页面上的标签,但如果绘制了整页,则需要能够执行此操作。

谢谢斯蒂芬

PS 我在 wordpress 论坛上问过这个问题,但没有得到回应。抱歉交叉张贴,但我有点绝望。

最佳答案

我不偏爱 eval,但这似乎可行,无论最后是否有输出缓冲......

function tui_findPostThumbIMG()
{
echo "hey hey\n";
}

ob_start();
$categoryID = 10;
$tui_cifp_insertvalue = "<?php tui_findPostThumbIMG([categoryID],100,100,'categoryintro-thumbnail','','',''); ?>";
$tui_cifp_insertvalue = str_replace("[categoryID]", $categoryID, $tui_cifp_insertvalue);
$tui_cifp_insertvalue = tui_cifp_evaluate_html($tui_cifp_insertvalue);
echo $tui_cifp_insertvalue;
ob_end_flush();

关于php - Wordpress 类别 ID 与评估问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/448470/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com