有几种方法可以做到这一点。我首选的方法是使用面向对象编程(OOP)来构造插件。例如,我可能会这样做:
class JPBTitle {
var $page_title = "Post Products Settings";
function __construct(){
add_action( \'admin_menu\', array( $this, \'admin_menu\' ) );
}
function admin_menu(){
add_options_page( $this->page_title, $this->page_title, \'administrator\', \'pp_settings\', array( $this, \'pp_settings\' ) );
}
function pp_settings(){
echo "<div class=\'wrap\'>\\n\\t<h2>$this->page_title</h2></div>";
}
}
$JPBTitle = new JPBTitle();
在插件中使用面向对象编程有许多优点;然而,如果您不想使用OOP,我建议您要么设置一个全局变量,要么用您想要用于该字符串的值定义一个常量。