Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove check for WP version #42643

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove check for WP version
Related discussion: Automattic/wp-calypso#101623
  • Loading branch information
pkevan authored Mar 21, 2025
commit acf19046a5918a19221cd0f6f47105331084a633
3 changes: 2 additions & 1 deletion projects/plugins/wpcomsh/feature-plugins/wordpress-mods.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@
function wpcomsh_site_status_tests_disable( $tests ) {
unset( $tests['direct']['plugin_version'] );
unset( $tests['direct']['theme_version'] );

unset( $tests['direct']['wordpress_version'] );

Check failure on line 222 in projects/plugins/wpcomsh/feature-plugins/wordpress-mods.php

View workflow job for this annotation

GitHub Actions / PHP Code Sniffer (non-excluded files only)

Whitespace found at end of line (Squiz.WhiteSpace.SuperfluousWhitespace.EndLine)
return $tests;
}
add_filter( 'site_status_tests', 'wpcomsh_site_status_tests_disable' );
Expand Down
Loading