0

我创建了一个 wordpress 模板,其中包含以下代码片段:

<?php the_content(); ?>    
<?php
$location ="";
?>

在 wordpress 管理员中,我想创建一个页面,并在页面编辑器中定义变量 $location。唯一的麻烦是我无法将 PHP 代码放入 edtior 并且 php-exec-plugin 无法正常工作。我需要这样做的原因是,取决于位置参数是什么,这会影响页面中的其他内容。(但这必须通过 wordpress 管理员控制。)

4

1 回答 1

0

为什么不使用自定义字段?在帖子编辑器中,添加一个字段,例如scott_location和一个值。在您的模板中,使用如下值:

$loc = get_post_meta( get_the_ID(), 'scott_location', true );
if( $loc == 'atlantis' ){
    //do stuff
}
于 2013-04-22T17:10:13.360 回答