Showing 399 of 427 total issues
Avoid too many return
statements within this method. Open
return mb_strtolower( $str, $charset );
Avoid too many return
statements within this method. Open
return strtolower( $str );
Avoid too many return
statements within this method. Open
return false;
Avoid too many return
statements within this method. Open
return $cache[ $item . $type ];
Avoid too many return
statements within this method. Open
if ( $this->options[ $field ] == 'sel' ) return false;
Avoid too many return
statements within this method. Open
if ( $nodefaults ) return false;
Avoid too many return
statements within this method. Open
return $defaults[ $item ];
Avoid too many return
statements within this method. Open
return false;
Function apply_tax_title_format
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function apply_tax_title_format( $category_name, $category_description, $tax = '' ) {
if ( empty( $tax ) ) $tax = get_query_var( 'taxonomy' );
$title_format = $this->get_tax_title_format( $tax );
$title = str_replace( '%taxonomy_title%', $category_name, $title_format );
if ( strpos( $title, '%taxonomy_description%' ) !== false ) $title = str_replace( '%taxonomy_description%', $category_description, $title );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function get_paged
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function get_paged( $link ) {
global $wp_rewrite;
$page = $this->get_page_number();
$page_name = 'page';
if ( !empty( $wp_rewrite ) && !empty( $wp_rewrite->pagination_base ) ) $page_name = $wp_rewrite->pagination_base;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function aioseop_load_json_services
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function aioseop_load_json_services() {
static $services_json = null;
if ( $services_json ) return $services_json;
if ( !class_exists( 'Services_JSON' ) ) require_once( 'JSON.php' );
if ( !$services_json ) $services_json = new Services_JSON();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function aioseop_list_pages
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function aioseop_list_pages( $content ) {
global $wp_version;
$matches = array();
if ( preg_match_all( '/<li class="page_item page-item-(\d+)/i', $content, $matches ) ) {
update_postmeta_cache( array_values( $matches[1] ) );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function get_the_image_by_scan
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function get_the_image_by_scan( $p = null ) {
if ( $p === null ) {
global $post;
} else {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function is_bad_referer
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function is_bad_referer() {
$referlist = $this->default_bad_referers();
$referlist = apply_filters( $this->prefix . "badreferlist", $referlist );
if ( !empty( $referlist ) && !empty( $_SERVER ) && !empty( $_SERVER['HTTP_REFERER'] ) ) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function get_object_labels
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function get_object_labels( $post_objs ) {
$pt = array_keys( $post_objs );
$post_types = Array();
foreach ( $pt as $p )
if ( !empty( $post_objs[$p]->label ) )
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function get_all_images
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function get_all_images( $options = null, $p = null ) {
$img = $this->get_all_images_by_type( $options, $p );
$legacy = Array();
foreach( $img as $k => $v ) {
if ( $v['type'] == 'featured' ) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function aioseop_output_dismissable_notice
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function aioseop_output_dismissable_notice( $message, $id = "", $class = "updated fade") {
global $current_user;
if ( !empty( $current_user ) ) {
$user_id = $current_user->ID;
$msgid = md5( $message );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function flush_rules_hook
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function flush_rules_hook() {
global $wp_rewrite;
$sitemap_rules = $this->get_rewrite_rules( $wp_rewrite );
if ( !empty( $sitemap_rules ) ) {
$rules = get_option( 'rewrite_rules' );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function add_post_types
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function add_post_types() {
$post_type_titles = $this->get_post_type_titles( Array( 'public' => true ) );
$taxonomy_titles = $this->get_taxonomy_titles( Array( 'public' => true ) );
if ( isset( $post_type_titles['attachment'] ) ) $post_type_titles['attachment'] = __( "Media / Attachments", 'all-in-one-seo-pack' );
$this->default_options['posttypes' ]['initial_options'] = array_merge( Array( 'all' => __( 'All Post Types', 'all-in-one-seo-pack' ) ), $post_type_titles );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"