How do I remove "Powered by Word Press" from Twenty Twelve and Word Press 3.7.1?
-
Hello Everybody, I can’t figure out how to get “Powered by WordPress” off my page. I have looked for something like:
<div class="site-info"> <?php do_action( 'twentytwelve_credits' ); ?> <a>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> </div><!-- .site-info -->
and I couldn’t find it, so I copy and pasted the entire code onto a Word Document to use the edit find feature to search for class=, proudly, word, etc. verifying that this code is not included. I also added this to the bottom of the code:
.site-info {
display: none;
}and it shows up as follows:
left: 2.2em; top: 2.2em; width: 39px; } .comments-area article header cite, .comments-area article header time { margin-left: 50px; margin-left: 3.57142857rem; } .site-info { display: none; } /* Theme Name: Foxy Child Theme Theme URI: https://www.elegantthemes.com/gallery/foxy/ Description: Foxy Child Theme Author: Elegant Themes Author URI: https://www.elegantthemes.com Template: Foxy Version: 1.0.0 */ @import url("../Foxy/style.css"); /* =Theme customization starts here ------------------------------------------------------- */ } <?php function twentytwelve_entry_meta() { $categories_list = get_the_category_list( __( ', ', 'twentytwelve' ) ); $tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) ); $date = sprintf( '%4$s', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '%3$s', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'twentytwelve' ), get_the_author() ) ), get_the_author() ); if ( $tag_list ) { $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s by %4$s.', 'twentytwelve' ); } elseif ( $categories_list ) { $utility_text = __( 'This entry was posted in %1$s on %3$s by %4$s.', 'twentytwelve' ); } else { $utility_text = __( 'This entry was posted on %3$s by %4$s.', 'twentytwelve' ); } printf( $utility_text, $categories_list, $tag_list, $date, $author ); }
Your help is highly appreciated!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How do I remove "Powered by Word Press" from Twenty Twelve and Word Press 3.7.1?’ is closed to new replies.