我正在用 wordpress 建立一个网站,主题是二十三个。我想去掉“这是一个博客……(搜索栏)……最近的帖子……最近的评论等等”这样的字眼。但是对页脚进行任何编码的唯一页面是footer.php。这是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_Thirteen
* @since Twenty Thirteen 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( 'main' ); ?>
<div class="site-info">
<?php do_action( 'twentythirteen_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>