1

私はワードプレスのテーマに取り組んでいますが、wp-adminでオプションを表示するときにもっとクリーンなコードを実行する方法を考えています。

現在、私のコードは次のとおりです。

...    

<?php $field_key = 'logo_retina'; if ( ! isset( $options[$field_key] ) ) $options[$field_key] = '';?>
                <tr valign="top"><th scope="row"><?php _e( 'Logo HQ', 'yes' ); ?></th>
                    <td><input id="<?php echo $field_key; ?>" class="regular-text" type="text" name="yes_theme_options[<?php echo $field_key; ?>]" value="<?php esc_attr_e( $options[$field_key] ); ?>" /></td>
                </tr>

            <?php $field_key = 'logo_non_retina'; if ( ! isset( $options[$field_key] ) ) $options[$field_key] = ''; ?>
                <tr valign="top"><th scope="row"><?php _e( 'Logo SQ', 'yes' ); ?></th>
                    <td><input id="<?php echo $field_key; ?>" class="regular-text" type="text" name="yes_theme_options[<?php echo $field_key; ?>]" value="<?php esc_attr_e( $options[$field_key] ); ?>" /></td>
                </tr>

            <?php $field_key = 'slogan_retina'; if ( ! isset( $options[$field_key])) $options[$field_key] = ''; ?>
                <tr valign="top"><th scope="row"><?php _e( 'Slogan HQ', 'yes' ); ?></th>
                    <td><input id="<?php echo $field_key; ?>" class="regular-text" type="text" name="yes_theme_options[<?php echo $field_key; ?>]" value="<?php esc_attr_e( $options[$field_key] ); ?>" /></td>
                </tr>

...

元のコードは、この3つの形式以上のものです。

私がやりたいのは、このオプションを動的に表示することです。つまり、たとえばphpの関数は1つだけです。これを行う方法がわかりません。

4

1 に答える 1

1

テーマのカスタムオプションを定義するときに使用する関数は次のとおりです。

カスタムオプションに動的フィールドを追加するには、次のフィールドを使用して$options配列に追加します。

「名前」は、管理パネルに表示される表示です。例:「FacebookURL」

「desc」は、フィールドの下に表示されるテキストです。例:「Facebookページへの完全なHTTPURL」

「id」は、設定値を取得するときにテーマで使用する変数です。

「タイプ」は、表示されるフィールドのタイプです。これらのオプションは、テキストフィールドの場合は「text」、テキストエリアフィールドの場合は「textarea」、見出し区切りの場合は「heading」にすることができます。見出しの区切りを使用すると、さまざまなフィールドを分類できます。

「name」「id」のみが必要です。

$options =  
array( 
    array("name" => " Options", "type" => "title"),
    array("type" => "open"), 
    array("name" => "", "desc" => "", "id" => "", "type" => "text"),
    array( "type" => "close")
);  

function mytheme_add_admin() {

    global $shortname, $options;

    if($_GET['page'] == basename(__FILE__)) {
        if($_REQUEST['action'] == 'save') {

            foreach($options as $value) {
                update_option( $value['id'], $_REQUEST[ $value['id'] ] ); 
            }

            foreach($options as $value) {
                if(isset($_REQUEST[ $value['id']])) { 
                    update_option($value['id'], $_REQUEST[$value['id']]); 
                } else { 
                    delete_option( $value['id'] ); 
                } 
            }

            header("Location: themes.php?page=functions.php&saved=true");
            die;

        } else if($_REQUEST['action'] == 'reset') {

            foreach($options as $value) {
                delete_option($value['id']); 
            }

            header("Location: themes.php?page=functions.php&reset=true");
            die;

        }
    }

    //add_menu_page(get_bloginfo('name') . " Options", "Theme Settings", 'administrator', basename(__FILE__), 'mytheme_admin', '', '63.3');
    add_submenu_page('themes.php', get_bloginfo('name') . " Options", 'Theme Settings', 'administrator', basename(__FILE__), 'mytheme_admin');

}

function mytheme_admin() {
    global $shortname, $options;
    if($_REQUEST['saved']) echo '<div id="message" class="updated fade"><p><strong>'.get_bloginfo('name').' settings saved.</strong></p></div>';
    if($_REQUEST['reset']) echo '<div id="message" class="updated fade"><p><strong>'.get_bloginfo('name').' settings reset.</strong></p></div>';
?>

<div class="wrap">
<h2><?php echo get_bloginfo('name'); ?> Settings</h2>

    <form method="post" style="background-color:#f8f8f8; padding:10px; margin-top: 10px;">

    <?php foreach ($options as $value) {
    switch ( $value['type'] ) {

    case "open":
    ?>
    <table width="100%" border="0">

    <?php break;

    case "close":
    ?>

    </table>

    <?php break;

    case 'text':
    ?>


    <tr>
    <td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
    <td width="80%"><input style="width:400px;" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" value="<?php if ( get_settings( $value['id'] ) != "") { echo stripslashes(get_settings($value['id'])); } else { echo stripslashes($value['std']); } ?>" /></td>
    </tr>

    <tr>
    <td><small><?php echo $value['desc']; ?></small></td>
    </tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>

    <?php
        break;
        case 'heading':
    ?>

    <tr>
        <td width="100%" colspan="2" valign="middle"><h3><?php echo $value['name']; ?></h3></td>
    </tr>

    <?php
    break;

    case 'textarea':
    ?>

    <tr>
    <td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
    <td width="80%"><textarea name="<?php echo $value['id']; ?>" style="width:400px; height:200px;" type="<?php echo $value['type']; ?>" cols="" rows=""><?php if ( get_settings( $value['id'] ) != "") { echo stripslashes(get_settings($value['id'])); } else { echo stripslashes($value['std']); } ?></textarea></td>

    </tr>

    <tr>
    <td><small><?php echo $value['desc']; ?></small></td>
    </tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>    
    <?php break;

    }
    }
    ?>

    <input name="save" type="submit" class="button-primary" value="Save changes" />
    <input type="hidden" name="action" value="save" />
    </form>

    <?php
    }


add_action('admin_menu', 'mytheme_add_admin');

カスタム設定から設定値を取得する方法は次のとおりです。

<?php
    global $options;
    foreach ($options as $value) {
        if(get_settings($value['id']) === FALSE) { $$value['id'] = stripslashes($value['std']); } else { $$value['id'] = stripslashes(get_settings($value['id'])); }
    }
?>

設定を取得するために必要なファイルの先頭に配置します。変数は、上記で定義した「ID」と同じになります。IDが「facebook」の場合、PHP変数は$facebookになります。

于 2013-03-26T22:08:15.717 に答える