网站启动前网站带有“ />”

时间:2018-07-02 14:44:15

标签: php wordpress

My website is WordPress based and before website starts its coming with a code
"/>  what should I do?
[Check this photo at top right corner][1]


  [1]: https://i.stack.imgur.com/MBrCe.jpg

代码是:

<?php
?><!DOCTYPE html>
<?php 
    if( $_GET && key_exists('mfn-rtl', $_GET) ):
        echo '<html class="no-js" lang="ar" dir="rtl">';
    else:
?>
<html class="no-js<?php echo mfn_user_os(); ?>" <?php language_attributes(); ?><?php mfn_tag_schema(); ?>>
<?php endif; ?>

<!-- head -->
<head>
<!-- meta -->
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<?php 
    if( mfn_opts_get('responsive') ){
        if( mfn_opts_get('responsive-zoom') ){
            echo '<meta name="viewport" content="width=device-width, initial-scale=1" />';

        } else {
            echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />';
        }    
    }
?>

它只是wordpress主题头文件。 BeTheme 我已经发布了一半的代码,我对其进行了编辑,然后删除了该代码 只是元描述而已。

1 个答案:

答案 0 :(得分:2)

无论生成元描述如何,都是错误的。如果您在firefox中查看源代码,则元描述行显示为红色,您将看到它具有两个“内容”规范和一个尾随的“ />”。这很可能是问题出处。如果不是主题,标题,然后从可能试图修改元标记的任何插件中删除。

enter image description here

import random

l = list(range(20))
random.shuffle(l)

partitions = 3

spark.sparkContext\
.parallelize(l)\
.sortBy(lambda x:x ,numPartitions=partitions)\
.collect()