JezK
Edit File: route-permission-trait.php
<?php namespace Yoast\WP\SEO\AI_Generator\User_Interface; /** * Trait for common permission checks in route classes. * * @deprecated 28.4 * @codeCoverageIgnore */ trait Route_Permission_Trait { /** * Checks: * - if the user is logged * - if the user can edit posts * * @deprecated 28.4 * @codeCoverageIgnore * * @return bool Whether the user is logged in, can edit posts and the feature is active. */ public function check_permissions(): bool { \_deprecated_function( __METHOD__, 'Yoast SEO 28.4' ); $user = \wp_get_current_user(); if ( $user === null || $user->ID < 1 ) { return false; } return \user_can( $user, 'edit_posts' ); } }