在wordpress插件中合并两个php函数

时间:2013-02-10 13:14:50

标签: php wordpress scripting merge calendar

我使用的是日历插件,我想改变一件事

有一个添加事件名称的php函数:

包括/日历/ Calendar.class.php

$tab .= '<div class="namevent"> '.$event['event'].'</div>';

输出:我的活动名称

我想在事件标题中添加一个TIME,在找了一段时间后我找到了时间函数

公共/ events.php

if(!empty($custom['stime'][0]))
                            echo '<br /><strong>'.$home[16].':</strong> '.$custom['stime'][0].' ';

if(!empty($custom['etime'][0]))
                            echo '<strong>'.$home[17].'</strong> '.$custom['etime'][0];

输出: 10:00到11:00 (假设您的活动时间是这些)

然后我尝试了这个:

$tab .= '<div class="namevent"> '.$custom['stime'][0].' - '.$custom['etime'][0].' '.$event['event'].'</div>';

将输出视为: 10:00 - 11:00我的活动名称

但它没有用;

我做错了什么?

非常感谢!

1 个答案:

答案 0 :(得分:1)

确保$custom['stime'][0]$custom['etime'][0]存在,每个var_dump()print_r()。 在导致错误的行之前添加以下代码:

var_dump($custom['stime']);  // Be sure the var is not undefined and [0] exists
var_dump($custom['etime']);