“Page Array” displaying in title bar on Front Page

There are many ways to set page title in wordpress.

1) In admin area go to settings >> General Settings. Set “Site Title” field and “Tagline” field values.

2) You can set your page title using wp_title() function to set the title of your page.

Using this function you can change your page title based on your page.

3) For SEO purpose you can use All in One SEO plugin which allows you to set page title and meta data for each and every page.

4) Also, You can use following jQuery code to remove “page array” string from your page title at the time of page load.

<script> 
  jQuery(document).ready(function () {
    var title = jQuery(this).attr('title');

    if(title.contains("– Page Array")){
            var title = title.replace("– Page Array", "");
            document.title = title;
        }
}); 
</script>