我已经尝试过删除' Powered by Wordpress'和主人的所有者的信息。这是footer.php文件..我只需删除它并更新?如果有,我该删除什么?
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package base
*/
?>
</div><!-- #content -->
</div><!-- wide contenitor-->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="widget-footer container">
<?php get_sidebar( 'footer' ); ?>
</div><!-- .widget-footer -->
<div class="site-info">
<?php get_template_part( 'content/social' ); // Social link ?>
<?php esc_attr_e( '©', 'base' ); ?> <?php _e( date( 'Y' ) ); ?> <a href="<?php echo esc_url(home_url( '/' )) ?>" target="_blank" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
<?php bloginfo( 'name' ); ?>
</a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s ', 'base' ), 'Base WP', '<a href="http://themes.iografica.it" rel="designer">iografica.it</a>' ); ?>
<span class="sep"> | </span>
<?php printf( __( 'Powered by ', 'base' )); ?><a href="http://wordpress.org/" rel="generator">
<?php printf( __( '%s', 'base' ), 'WordPress' ); ?></a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
答案 0 :(得分:0)
您是否尝试删除此内容?
<?php printf( __( 'Powered by ', 'base' )); ?><a href="http://wordpress.org/" rel="generator">
<?php printf( __( '%s', 'base' ), 'WordPress' ); ?></a>
答案 1 :(得分:0)
您确实不应删除主题所有者名称,因为它可能违反主题许可。
就是说删除第28,30和31行。
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package base
*/
?>
</div><!-- #content -->
</div><!-- wide contenitor-->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="widget-footer container">
<?php get_sidebar( 'footer' ); ?>
</div><!-- .widget-footer -->
<div class="site-info">
<?php get_template_part( 'content/social' ); // Social link ?>
<?php esc_attr_e( '©', 'base' ); ?> <?php _e( date( 'Y' ) ); ?> <a href="<?php echo esc_url(home_url( '/' )) ?>" target="_blank" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
<?php bloginfo( 'name' ); ?>
</a>
<span class="sep"> | </span>
<span class="sep"> | </span>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
答案 2 :(得分:0)
为什么要删除积分?您只需单击一下即可将主题更新为高级版本。使用高级版本,您还可以访问更多高级功能和自定义。