我需要在配方博客的页面上添加一个自定义字段,作为配方的特定帖子页面。它还有一个自定义字段边栏后端菜单,我可以在其中添加带有自定义名称的自定义字段。然后我取这个代码名,像这样插入
使用该代码编译变量,从另一个变量复制,该变量仍在主题中:
<?php while ( have_posts() ) : the_post();
$recipe_sub_title = osetin_get_field(\'sub_title\');
$layout_type_for_recipe = osetin_get_settings_field(\'layout_type_for_single_recipe\', \'half_left_image\');
$big_header_titled_image = false;
$recipe_cooking_time = osetin_get_field(\'recipe_cooking_time\');
$recipe_serves = osetin_get_field(\'recipe_serves\');
$recipe_difficulty_string = osetin_get_difficulty_string(osetin_get_field(\'recipe_difficulty\'));
$cooking_temperature = osetin_get_field(\'recipe_cooking_temperature\');
$quick_description = osetin_get_field(\'quick_description\');
$details_position = osetin_get_settings_field(\'recipe_details_position\', \'split\');
$considerations = osetin_get_field(\'considerations\');..... etc>>
考虑是自定义字段。然后用那个代码在页面位置调用它
<?php
if($considerations){
echo \'<div>\'.$considerations.\'</div>\';
}?>
我没有看到它出现在添加配方后端页面中,前端页面中也没有任何更改。我错过了什么?我还需要在另一个地方打电话?非常感谢。