0

我有一些带有自定义字段的页面,这些自定义字段信息我将通过翻转显示在我的菜单下,作为其他页面的页面描述动态。

get_post_meta($post->ID, 'page_desc', true)

这些工作正常,但仅适用于当前页面。我无法从其他页面获取自定义字段信息。我该如何解决这个问题?

谢谢你

4

1 回答 1

0

There is no way using this function.

But if you know other post id or logic to get it

pass that id to

get_post_meta($post_ID, 'page_desc', true)

Where $post_ID id is the other post id.

于 2012-05-22T11:36:50.170 回答