如何使用wordpress此行的页脚

如何使用wordpress此行的页脚,wordpress,Wordpress,如何删除 Powered by WordPress | Designed by: SharePoint Site | Thanks to Virtual Server, Email Hosting and Rent Server 在WordPress主题中,您进入WordPress管理页面,在样式中,您将拥有“编辑器”。在右菜单中,在我的例子中选择“footer.php”,如下所示: <footer id="colophon" class="clearfix"> <p

如何删除

Powered by WordPress | Designed by: SharePoint Site | Thanks to Virtual Server, Email Hosting and Rent Server

在WordPress主题中,您进入WordPress管理页面,在样式中,您将拥有“编辑器”。在右菜单中,在我的例子中选择“footer.php”,如下所示:

<footer id="colophon" class="clearfix">
    <p>Proudly powered by <a href="http://wordpress.org/">WordPress</a>
        <span class="sep"> | </span>
        <?php printf( __( 'Theme: %1$s by %2$s', 'yoko' ), 'Yoko', '<a href="http://www.elmastudio.de/wordpress-themes/">Elmastudio</a>' ); ?>
    </p>
    <a href="#page" class="top"><?php _e( 'Top', 'yoko' ); ?></a>
</footer>


自豪地依靠
| 

因此,在这里,您可以根据需要进行编辑