如何在我的网站上显示这些 php 变量

问题描述 投票:0回答:0

我正在尝试向客户展示我的管理面板中的值。

我经营一个 wordpress 网站,想在我的网站上显示这些变量,以便客户可以查看他们的订单状态。 API 连接和所有变量都已通过插件设置。一切正常,但插件没有在网站上显示这些值的选项。我还有一个代码片段插件,我可以在其中输入代码。我只是不知道如何将变量提供给我的网站,以便我可以在 html 字段中使用它们。

  /** Get order status  */
    public function status($order_id)
    {
        return json_decode(
            $this->connect([
                'key' => $this->api_key,
                'action' => 'status',
                'order' => $order_id
            ])
        );
    }


$status = $api->status($order->order); # Return status, charge, remains, start count, currency

php html wordpress api
© www.soinside.com 2019 - 2024. All rights reserved.