* insites 테마 세부 설정
wp-content\themes\insights\inc\customizer\core\default.php 파일 수정
- 우측 시간 없애기
$defaults['enable_top_header_date'] = 0;
- copyright 수정
$defaults['enable_copyright_credit'] = 0;
$defaults['copyright_text'] = '';
//----------------------
* 저자 표시 숨기기
wp-content\themes\insights\inc\template-tags.php
insights_posted_details_date_name()
//echo '<span class="author primary-font">' . $byline . '</span><span class="posted-on primary-font">' . $posted_on . '</span>'; // WPCS: XSS OK. // 수정, 저자 author 숨기기
//----------------------
* 로고 크기 변경
테마의 style.css 변경
.custom-logo {
height: 40px ;
width: 150px ;
}
//----------------------
* 파일 변경 시간 추가
- style.css 변경시 바로 웹 브라우저에 반영하기
- 테마 설정에서 style.css 변경 설정을 해도 되지만 로컬에서 수정해도 원격에서 다시 수정해야 하는 문제가 있음
- style.css?ver=파일변경시간으로 하면 위의 문제가 해결
wp-content\themes\insights\functions.php 파일 수정
function insights_scripts()
{
//wp_enqueue_style('insights-style', get_stylesheet_uri());
//$file = $path . '/style.css';//url 경로는 안된다
$file = 'wp-content/themes/insights/style.css'; //맨 앞에 '/'가 있으면 안된다
wp_enqueue_style('insights-style', $file, array(), filemtime($file), false);
참고
https://www.launch2success.com/guide/force-css-changes-to-go-live-immediately-in-wordpress/
https://developer.wordpress.org/reference/functions/wp_enqueue_style/
//----------------------
* 메타 태그 수정
wordpress meta tag change
https://gretathemes.com/seo-add-meta-tags-without-plugins/
\wp-content\themes\insights\header.php 테마 파일 수정
'Code > PHP' 카테고리의 다른 글
[php] Laravel Dusk 사용법 (0) | 2020.08.23 |
---|---|
[워드프레스] 사용 방법 모음(tips) (0) | 2020.08.02 |
[php] 워드프레스 설치 (0) | 2020.07.31 |
[php] php에서 자바스크립트 함수 실행하는 방법 (v8js) (0) | 2020.04.10 |
[PHP] underscore(lodash) 같은 라이브러리 (0) | 2020.04.05 |