워드프레스 메인 수정 어디서하나요?
본문
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 이거 따라들어가도 별내용 써있지도않고..
메인페이지 코드수정하려면 어디로가야하나요..