在我的functions.php
for Wordpress中,我创建了一个与 Events Manager Pro 一起使用的占位符。 (基本上它会获得我博客上活动的门票价格。)
它有效,但我需要一个补充,我似乎无法让它工作。
我需要添加条件:
If #_PRICE (this function) = empty (null) then set the value to '0.00'
目前的代码是:
<?php
function em_event_output_placeholder_tax($replace, $EM_Event, $result){
switch( $result ){
case '#_PRICE':
$replace = '';
foreach( $EM_Event->get_tickets()->tickets as $EM_Ticket ){
$replace .= number_format($EM_Ticket->get_price(), 2, '.', '');
}
break;
}
return $replace;
}
add_filter('em_event_output_placeholder','em_event_output_placeholder_tax',1,3);
?>
请帮忙......