我试图在 wordpress 页脚中添加一些信息。我对我现在使用的主题中的 footer.php 文件进行了一些修改。代码如下:
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
</div><!-- #main .wrapper -->
<footer id="colophon" role="contentinfo">
<div class="site-info">
<?php do_action( 'twentytwelve_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress'); ?></a>
</div><!-- .site-info -->
<div><?php echo "test"; ?></div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
我期望的输出是我博客页脚中的字符串“test”,但实际结果是字符串“test”不在页脚中。我的 wordpress 版本是 3.5.2,我使用 wordpress-MU 和 buddypress 作为插件。任何帮助lz~~