我在下面粘贴的代码来自第二十一主题的header.php。我只想知道要查找哪个功能来检测纯文本内容?
<nav id="access" role="navigation">
<h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
<?php /* Allow screen readers / text browsers to skip the navigation menu
and get right to the good stuff. */ ?>
<div class="skip-link">
<a class="assistive-text" href="#content"
title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>">
<?php _e( 'Skip to primary content', 'twentyeleven' ); ?>
</a>
</div>
<div class="skip-link">
<a class="assistive-text" href="#secondary"
title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>">
<?php _e( 'Skip to secondary content', 'twentyeleven' ); ?>
</a>
</div>
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back
to wp_page_menu. The menu assigned to the primary location is the one used.
If one isn't assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- #access -->
我问的原因是我正在使用我正在处理的主题测试此代码,并且它的行为就好像我的主题是纯文本的,即使页面有图像等。此外,它是 Windows 上的 Firefox,所以很明显浏览器没问题(也在 Chrome 中检查过)。所以基本上我试图找出使它看起来好像是“纯文本”或如何执行此代码的标准。
我还查看了各种 .js 文件,但那里什么也没看到。似乎这是用 PHP 完成的。