
-
2018/09/08 6:54 오후 #53330
시드니 테마의 저작권 관련 문구 푸터 수정법을 인터넷 에있는 동영상을 보고 따라 했는데
에러가 발생해서 꼭 수정해야 하는 저작권 문구 수정 작업을 못하고 있습니다.
어떤 문제가 있는 걸까요?
중간에 삽입된 문구 aaaa bbbb는 예문을 넣은 건데 그게 문제가 있는 걸까요?
감사합니다.
아래는 참조 자료 입니다.
원본 code
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Sydney
*/
?>
<!– #content –><?php do_action(‘sydney_before_footer’); ?>
<?php if ( is_active_sidebar( ‘footer-1’ ) ) : ?>
<?php get_sidebar(‘footer’); ?>
<?php endif; ?>
“><?php printf( __( ‘Proudly powered by %s’, ‘sydney’ ), ‘WordPress’ ); ?>
|
<?php printf( __( ‘Theme: %2$s by %1$s.’, ‘sydney’ ), ‘aThemes’, ‘Sydney‘ ); ?>
<!– .site-info –>
<!– #colophon –><?php do_action(‘sydney_after_footer’); ?>
<!– #page –>
<?php wp_footer(); ?>
</body>
</html>code
수정후 에러나는 code
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Sydney
*/
?><!– #content –>
<?php do_action(‘sydney_before_footer’); ?>
<?php if ( is_active_sidebar( ‘footer-1’ ) ) : ?>
<?php get_sidebar(‘footer’); ?>
<?php endif; ?><!– #colophon –>
<?php do_action(‘sydney_after_footer’); ?>
<!– #page –>
<?php wp_footer(); ?>
</body>
</html> -
AuthorPosts
- 답변은 로그인 후 가능합니다.