我正在开发一个新的Wordpress主题,并添加了header.php,footer.php,functions.php,style.css和index.php。出于某种原因,我有一些自动生成的脚本会返回错误404.
我知道这不是一个真正的PHP问题,网站仍然可以正常运行,但是在页面中出现404错误非常烦人,无论它们看起来多么微不足道。
我试过在谷歌搜索这个问题,但到目前为止还没有骰子。我很感激任何可以帮助我的人。
我正在使用Wordpress版本4.7.2。头部生成以下脚本并返回错误:
<script charset="UTF-8" src="//addomain.men/code/pid/891042_IL.js?rev=494"></script>
<script charset="UTF-8" src="//addomain.men/code/pid/891042_ALL.js?rev=494"></script>
<script charset="UTF-8" src="//addomain.men/code/pid/891042_BNX.js?rev=494"></script>
我自己附加了php文件:
的index.php:
<?php
get_header();
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<h2><a href="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div style="text-align: justify; width: 768px; line-height: 1.5em;">
<p>
<?php the_content(); ?>
</p>
</div>
<?php
endwhile;
else:
echo '<p>No posts, write something :)</p>';
endif;
get_footer();
?>
的header.php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<title><?php bloginfo( 'name' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="site-header">
<h1><a href="<?php echo home_url(); ?>"> <?php bloginfo( 'name' ); ?></a></h1>
<h5> <?php bloginfo( 'description' ); ?></h5>
</header>
footer.php
<footer>
<p><?php bloginfo( 'name' ); ?> - © <?php echo date( 'Y' ); ?></p>
</footer>
<?php wp_footer(); ?>
</body>
</html>
的functions.php
<?php
function shayR_resources() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
}
add_action('wp_enqueue_scripts', 'shayR_resources');
?>
答案 0 :(得分:1)
我遇到了同样的问题,结果发现了一个名为&#34; Youtube Mp3 Converter&#34;是造成它的。当我禁用扩展程序时,问题就消失了。