使用另一个WordPress插件的功能

时间:2019-03-12 15:50:36

标签: php wordpress if-statement shortcode

我想创建一个if语句,以显示天气是低于零还是高于零。

我正在使用真棒天气小部件Wordpress插件的PRO版本来显示天气。该插件有两个功能可供使用:https://halgatewood.com/docs/plugins/awesome-weather-widget/pro-functions-grab-weather-data

使用代码时出现错误:

  

致命错误:未捕获错误:调用未定义函数   在...中获取get_awesome_weather_widget()

我的代码:

function check_weather() {
    $t = get_awesome_weather_widget('wakita, OK');

if ($t < "0") {
    echo "<p>The weather is above 0 degrees!</p>";
} else {
    echo "<p>The weather is NOT below 0 degrees!</p>";
}
}

add_shortcode('dronevejr', 'check_weather');

0 个答案:

没有答案