我正试着做这样的东西。
<?php
class themeSettings {
private $key = \'themeSettings\';
public function __construct( $key ) {
global $post;
$post_id = $post->ID;
$settings = get_post_meta( $post_id, $this->key, true );
}
public function getData(){
print_r( $settings[\'post_description\'] );
}
}
$themeSettings = new themeSettings();
?>
<?php
// Print \'post_description\' values
getData();
?>
但它不起作用。我错在哪里?