所以,我在Windows环境中。
functions.php
if (is_page('AOE Home')){
wp_nav_menu(array('menu'=>'Primary Navigation' ));
} elseif (is_page('turkish')) {
echo "text";
wp_nav_menu(array('menu'=>'Turkish Navigation' ));
}
按Enter键,结果为''两个单引号?
答案 0 :(得分:1)
如果文本文件不在当前工作目录中,则需要指定文本文件的完整路径:
testFile = open("c:/Users/yourusername/My Documents/text.txt")
答案 1 :(得分:-4)
testFile = open("test.txt", "rb")
testFile.read()