스크린샷 2013-11-26 오전 2.52.02

간혹 프리미엄테마의 기능중에는 푸터에 있는 copyright를 지워주는 옵션이 있다.

다 필요 없는데, copyright 하나 때문에 유료테마를 구입해야되나 싶은 경우 이용할 수 있는 방법.

별일 없다면, wordpress/wp-content/themes/<themes-name>/footer.php 의 경로에서 별 어려울 것 없는 코드 발견 가능.

( 워드프레스에서 제공하는 무료테마니까 별 죄책감없이 지워보기로 하자. )

[sourcecode language=”html”]

</div><!– #main –>

<footer id="colophon" class="site-footer" role="contentinfo">

<?php get_sidebar( ‘footer’ ); ?>

<div class="site-info">
<?php do_action( ‘twentyfourteen_credits’ ); ?>
<a href="<?php echo esc_url( __( ‘http://wordpress.org/’, ‘twentyfourteen’ ) ); ?>">
<?php printf( __( ‘Proudly powered by %s’, ‘twentyfourteen’ ), ‘WordPress’ ); ?></a>
</div><!– .site-info –>
</footer><!– #colophon –>
</div><!– #page –>

<?php wp_footer(); ?>
</body>
</html>

[/sourcecode]

간단히 <div></div> 안에 있는 두어줄을 지워주면 끝.

원하는 문구가 있다면 <?php printf(‘내용’);?> 출력문 한 줄 써주면 된다. (c)와 같은 특수기호는 링크를 참고.