source of /sprout/config/admin_seo.php
Copyright (C) 2018 Karmabunny Pty Ltd.
This file is a part of SproutCMS.
SproutCMS is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation, either
version 2 of the License, or (at your option) any later version.
For more information, visit <http://getsproutcms.com>. <?php /** * Copyright (C) 2018 Karmabunny Pty Ltd. * * This file is a part of SproutCMS. * * SproutCMS is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Foundation, either * version 2 of the License, or (at your option) any later version. * * For more information, visit <http://getsproutcms.com>. */ // Minimum word count $config['word_count'] = 300; // Average words per sentence as percentage $config['average_words_sentence'] = 20; // Readability score 0 = hard, 100 = easy $config['readability_scores'] = [ [ 'range' => [90, 100], 'desc' => 'Very easy to read.', 'type' => 'good', 'fix' => '', ], [ 'range' => [80, 90], 'desc' => 'Easy to read.', 'type' => 'good', 'fix' => '', ], [ 'range' => [70,80], 'desc' => 'Fairly easy to read.', 'type' => 'good', 'fix' => '', ], [ 'range' => [60,70], 'desc' => 'Easily understood.', 'type' => 'good', 'fix' => '', ], [ 'range' => [50,60], 'desc' => 'Fairly difficult to read.', 'type' => 'problem', 'fix' => 'Write short sentences, add subheadings and use connecting words.', ], [ 'range' => [30,50], 'desc' => 'Difficult to read.', 'type' => 'problem', 'fix' => 'Write short sentences, add subheadings and use connecting words.', ], [ 'range' => [0,30], 'desc' => 'Very difficult to read.', 'type' => 'problem', 'fix' => 'Write short sentences, add subheadings and use connecting words.', ] ]; // SEO words to ignore $config['stop_words'] = ["a", "about", "above", "above", "across", "after", "afterwards", "again", "against", "all", "almost", "alone", "along", "already", "also","although","always","am","among", "amongst", "amoungst", "amount", "an", "and", "another", "any","anyhow","anyone","anything","anyway", "anywhere", "are", "around", "as", "at", "b", "back","be","became", "because","become", "becomes", "becoming", "been", "before", "beforehand", "behind", "being", "below", "beside", "besides", "between", "beyond", "bill", "both", "bottom","but", "by", "c", "call", "can", "cannot", "cant", "co", "con", "could", "couldnt", "cry", "d", "de", "describe", "detail", "do", "done", "down", "due", "during", "each", "e", "eg", "eight", "either", "eleven","else", "elsewhere", "empty", "enough", "etc", "even", "ever", "every", "everyone", "everything", "everywhere", "except", "f", "few", "fifteen", "fill", "find", "fire", "first", "five", "for", "former", "formerly", "forty", "found", "four", "from", "front", "full", "further", "g", "get", "give", "go", "h", "had", "has", "hasnt", "have", "he", "hence", "her", "here", "hereafter", "hereby", "herein", "hereupon", "hers", "herself", "him", "himself", "his", "how", "however", "hundred", "i", "ie", "if", "in", "inc", "indeed", "interest", "into", "is", "it", "its", "itself", "j", "k", "keep", "l", "last", "latter", "latterly", "least", "less", "ltd", "m", "made", "many", "may", "me", "meanwhile", "might", "mill", "mine", "more", "moreover", "most", "mostly", "move", "much", "must", "my", "myself", "n", "name", "namely", "neither", "never", "nevertheless", "next", "nine", "no", "nobody", "none", "noone", "nor", "not", "nothing", "now", "nowhere", "o", "of", "off", "often", "on", "once", "one", "only", "onto", "or", "other", "others", "otherwise", "our", "ours", "ourselves", "out", "over", "own", "p", "part", "per", "perhaps", "please", "put", "q", "r", "rather", "re", "s", "same", "see", "seem", "seemed", "seeming", "seems", "serious", "several", "she", "should", "show", "side", "since", "sincere", "six", "sixty", "so", "some", "somehow", "someone", "something", "sometime", "sometimes", "somewhere", "still", "such", "system", "t", "take", "ten", "than", "that", "the", "their", "them", "themselves", "then", "thence", "there", "thereafter", "thereby", "therefore", "therein", "thereupon", "these", "they", "thick", "thin", "third", "this", "those", "though", "three", "through", "throughout", "thus", "to", "together", "too", "top", "toward", "towards", "twelve", "twenty", "two", "u", "un", "under", "until", "up", "upon", "us", "v", "very", "via", "w", "was", "we", "well", "were", "what", "whatever", "when", "whence", "whenever", "where", "whereafter", "whereas", "whereby", "wherein", "whereupon", "wherever", "whether", "which", "while", "whither", "who", "whoever", "whole", "whom", "whose", "why", "will", "with", "within", "without", "would", "x", "y", "yet", "you", "your", "yours", "yourself", "yourselves", "z", ];
|