0

我为我的 wordpress 管理面板创建了一个自定义图像上传器,需要从 wp_options 表中检索数据。我已经写了以下功能:

//function to get all slider images
function getSliderImages(){
    global $wpdb, $theme_shortname;
    $query = "SELECT * FROM $wpdb->options AS o1 
    WHERE o1.option_name LIKE '%".$theme_shortname."_header_image%'";
    $imgs = $wpdb->get_results($query);

    $images = array();
    //loop through images and remove unusable results
    foreach($imgs as $i){
        $id = substr($i['option_name'],0,-1);
        if(is_numeric($id)){
            $images[] = $i['option_value'];
        }
    }

    return($images);
}

如何访问前端 header.php 中返回的数组?这个函数目前在themes/themename/functions.php

4

1 回答 1

1

您正在声明一个在所有模板文件中都可用的全局函数。您可以简单地<?php $images = getSliderImages(); ?>在任何模板中使用。

于 2012-05-10T11:25:58.957 回答