确实有一个选项表(wp\\u options/prefix\\u options)。您可以在以下表格中找到完整的详细信息:http://codex.wordpress.org/Database_Description#Table:_wp_options
选项应该是全局可访问的(不限于单个帖子),您只需要知道选项名称/键。您可以使用以下函数访问该表及其值:
<?php $your_option = get_option( $option, $default ); ?>
- http://codex.wordpress.org/Function_Reference/get_option
<?php update_option( $option, $new_value ); ?>
- http://codex.wordpress.org/Function_Reference/update_option
现在您提到了自定义字段,这是完全不同的。自定义字段绑定到各个帖子,并存储在wp\\u postmeta(或前缀postmeta)表中。要访问此数据,您需要post\\u id和自定义字段名/键。
(此处的\\u Posteta表中有完整详细信息:http://codex.wordpress.org/Database_Description#Table:_wp_postmeta)
您可以使用以下功能访问这些值:
<?php $meta_values = get_post_meta( $post_id, $key, $single ); ?>
- http://codex.wordpress.org/Function_Reference/get_post_meta
<?php add_post_meta($post_id, $meta_key, $meta_value, $unique); ?>
- http://codex.wordpress.org/Function_Reference/add_post_meta
<?php update_post_meta($post_id, $meta_key, $meta_value, $prev_value); ?>
- http://codex.wordpress.org/Function_Reference/update_post_meta
<?php delete_post_meta($post_id, $meta_key, $meta_value); ?>
- http://codex.wordpress.org/Function_Reference/delete_post_meta
还有更多,你可以在法典中找到。