0

我为不同的样式表选择设置了 wordpress 主题设置,该设置是在前端使用 if else 语句设置的。

我的 wordpress 设置可能具有以下值池中的一个值

red ,green, blue, yellow, white, pink, black, grey ,silver or purple

我的模板:

<link href="<?php bloginfo("template_url"); ?>/style.css" rel="stylesheet" media="all" />

<?php if (get_option('my_style') == "red"  : ?>
<link href="<?php bloginfo("template_url"); ?>/css/red.css" rel="stylesheet" media="all" />
<?php endif; ?>

<?php if (get_option('my_style') == "green"  : ?>
<link href="<?php bloginfo("template_url"); ?>/css/green.css" rel="stylesheet" media="all" />
<?php endif; ?>

<?php if (get_option('my_style') == "blue"  : ?>
<link href="<?php bloginfo("template_url"); ?>/css/blue.css" rel="stylesheet" media="all" />
<?php endif; ?>

<?php if (get_option('my_style') == "yellow"  : ?>
<link href="<?php bloginfo("template_url"); ?>/css/yellow.css" rel="stylesheet" media="all" />
<?php endif; ?>
.
.
.
.
.
<?php if (get_option('my_style') == "purple"  : ?>
<link href="<?php bloginfo("template_url"); ?>/css/purple.css" rel="stylesheet" media="all" />
<?php endif; ?>

通过这种方式,我可以根据需要获得特定的样式表。但是,如果选项池中有更多价值,则此 php 代码会变得冗长。那么有没有办法使用数组来缩短它?

4

4 回答 4

3

也许你可以把它减少到

<link href="<?php bloginfo("template_url"); ?>/css/<?php echo get_option('my_style'); ?>.css" rel="stylesheet" media="all" />

get_option如果函数返回与 css 文件名称相同的字符串,我认为您不需要数组。

于 2013-02-19T14:58:54.050 回答
1

这个选项:

<?php
$arraystyle=array("red", "green", "blue", "yellow", "white", "pink", "black", "grey", "silver", "purple");

$val=get_option('my_style');
if(!in_array($val, $arraystyle)){
    echo "Style not found";
    return false;
}
?>

<link href="<?php bloginfo("template_url"); ?>/css/<?php echo $arraystyle[$val];?>.css" rel="stylesheet" media="all" />
于 2013-02-19T14:57:54.500 回答
0

这里没有真正需要使用数组。您正在根据某个值更改要包含的 CSS 文件。

我认为您正在寻找的是 switch case 命令。这是您可以用它做什么的简单示例-

<?php

$my_style = get_option('my_style');
switch($my_style){
 case "red":
   echo '<link href="'. bloginfo("template_url"). '/css/red.css" rel="stylesheet" media="all" />';
 break;
 case "green":
   echo '<link href="'. bloginfo("template_url"). '/css/green.css" rel="stylesheet" media="all" />';
 break;
 default :
   echo '<link href="'. bloginfo("template_url"). '/css/default.css" rel="stylesheet" media="all" />';
 break;
}

?>

my_style使用此方法,您可以为每个选项包含多个更改。请注意使用默认情况来处理任何意外值...

参考 -

于 2013-02-19T15:01:43.990 回答
0
<?php
$my_styles = array(
    'red',
    'green',
    'blue',
    'yellow',
    'white',
    'pink',
    'black',
    'grey',
    'silver'
);
?>
<?php if(in_array($my_style = get_option('my_style'),$my_styles)) : ?>
    <link href="<?php echo bloginfo("template_url")."/css/{$my_style}.css"; ?>" rel="stylesheet" media="all" /> 
<?php endif; ?>

您可以使用 $my_styles 使用所有可用样式填充变量,无论是来自数据库还是其他任何样式。

于 2013-02-19T15:11:31.840 回答