作为一名设计师,我不太擅长PHP。我已经创建了一个(混合)元框。现在我想在我的模板上显示meta内容。由于某些原因,我无法将其挂接到模板中。
meta box正在适当地保存内容。
function hybrid_service_meta_boxes() {
/* Array of the meta box options. */
$meta_boxes = array(
\'doc\' => array( \'name\' => \'doc\', \'title\' => __(\'doc\', \'hybrid\'), \'type\' => \'text\' ),
\'description\' => array( \'name\' => \'Description\', \'title\' => __(\'Description\', \'hybrid\'), \'type\' => \'textarea\' ),
);
return apply_filters( \'hybrid_service_meta_boxes\', $meta_boxes );}
现在的问题是,我如何将其连接到前端?
<?php if ( get_post_meta($post->ID, \'Service\', true) ) : ?>
Test succes
<?php endif; ?>
正如你所见,我正在测试这些东西是否有效,但我不会获得“测试成功”。
有人知道我做错了什么吗?我认为“服务”是不正确的。。