for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Functions which enhance the theme by hooking into WordPress
*
* @package DesignFly
*/
* Adds custom classes to the array of body classes.
* @param array $classes Classes for the body element.
* @return array
function designfly_body_classes( $classes ) {
// Adds a class of hfeed to non-singular pages.
if ( ! is_singular() ) {
is_singular
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
if ( ! /** @scrutinizer ignore-call */ is_singular() ) {
$classes[] = 'hfeed';
}
// Adds a class of no-sidebar when there is no sidebar present.
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
is_active_sidebar
if ( ! /** @scrutinizer ignore-call */ is_active_sidebar( 'sidebar-1' ) ) {
$classes[] = 'no-sidebar';
return $classes;
add_filter( 'body_class', 'designfly_body_classes' );
add_filter
/** @scrutinizer ignore-call */
* Add a pingback url auto-discovery header for single posts, pages, or attachments.
function designfly_pingback_header() {
if ( is_singular() && pings_open() ) {
if ( /** @scrutinizer ignore-call */ is_singular() && pings_open() ) {
pings_open
if ( is_singular() && /** @scrutinizer ignore-call */ pings_open() ) {
printf( '<link rel="pingback" href="%s">', esc_url( get_bloginfo( 'pingback_url' ) ) );
esc_url
printf( '<link rel="pingback" href="%s">', /** @scrutinizer ignore-call */ esc_url( get_bloginfo( 'pingback_url' ) ) );
get_bloginfo
printf( '<link rel="pingback" href="%s">', esc_url( /** @scrutinizer ignore-call */ get_bloginfo( 'pingback_url' ) ) );
add_action( 'wp_head', 'designfly_pingback_header' );
add_action