Issues (71)

auto-update-themes.php (1 issue)

1
<?php
2
3
/*
4
 * Plugin Name: Auto theme updates
5
 * Plugin URI:  https://github.com/pothi/wordpress-mu-plugins
6
 * Version:     0.1
7
 * Description: Automatically update all themes
8
 * Author:      Pothi Kalimuthu
9
 * Author URI:  http://pothi.info
10
 * License:     GPL
11
 */
12
13
add_filter( 'auto_update_theme', '__return_true' );
0 ignored issues
show
The function add_filter was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

13
/** @scrutinizer ignore-call */ 
14
add_filter( 'auto_update_theme', '__return_true' );
Loading history...
14