채택완료

워드프레스 메인 수정 어디서하나요?

2016-11-16 (수) 10:27:37 3,411

index 열어보면

<script language=javascript>

var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson','Mobile','Nokia','webOS','Opera Mini','opera mobi','SonyEricsson','Windows Phone','IEMobile','POLARIS');

for (var word in mobileKeyWords){

    if (navigator.userAgent.match(mobileKeyWords[word]) != null){

location.href = "/m/";

        break;

    }

}

</script>

<?php

/**

 * Front to the WordPress application. This file doesn't do anything, but loads

 * wp-blog-header.php which does and tells WordPress to load the theme.

 *

 * @package WordPress

 */

/**

 * Tells WordPress to load the WordPress theme and output it.

 *

 * @var bool

 */

define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */

require( dirname( __FILE__ ) . '/wp-blog-header.php' );

모바일이동 스크립트랑 저것만 꼴랑써있는데.. 

/wp-blog-header.php 이거 따라들어가도 별내용 써있지도않고.. 

메인페이지 코드수정하려면 어디로가야하나요..


|

답변 1개 / 댓글 1개

채택된 답변
+20 포인트
2016-11-16 (수) 10:32:31

WP_USE_THEMES 

 

테마를 사용중이시니 관리자에서 사용중이신 THEMES 경로를 확인하신 뒤

추적하시면 됩니다.

답변에 대한 댓글 1개

2016-11-16 (수) 10:37:44
감사합니다

답변을 작성하려면 로그인이 필요합니다.