Call custom field using php

时间:2015-11-19 作者:JoaMika

function the_alt_title($title= \'\') {
    $page = get_page_by_title($title);
    if ($p = get_post_meta($page->ID, "_x_entry_alternate_index_title", true)) {
        $title = $p;
    }

    return $title;
}
add_filter(\'the_title\', \'the_alt_title\', 10, 1);
我的主题使用了alternate index title 在我的functions.php

我想alternate index title 在wordpress中是否被识别为自定义字段?

我怎么能打电话给alternate index title 在页面上使用php代码?

2 个回复
最合适的回答,由SO网友:TheDeadMedic 整理而成

答案在你的问题中:

<?php $index_title = get_post_meta( get_the_ID(), \'_x_entry_alternate_index_title\', true ) ?>

SO网友:Mateusz Hajdziony

如果您试图在页面内容内打印备用索引标题,则必须创建自定义快捷码。您不能在帖子/页面的内容区域中使用PHP,但可以使用短代码。