我试图在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作为插件。 任何帮助PLZ ~~
答案 0 :(得分:0)
在站点信息div中编写代码:
<div class="site-info"><!-- .site-info --></div>