hether or not we should prevent the date from being modified. * * @since 4.5.2 * * @param int $postId The Post ID. * @return bool Whether or not we should prevent the date from being modified. */ public function limitModifiedDate( $postId ) { // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable return false; } /** * Returns the processed page builder content. * * @since 4.5.2 * * @param int $postId The post id. * @param string $content The raw content. * @return string The processed content. */ public function processContent( $postId, $content = '' ) { if ( empty( $content ) ) { $post = get_post( $postId ); if ( is_a( $post, 'WP_Post' ) ) { $content = $post->post_content; } } if ( aioseo()->helpers->isAjaxCronRestRequest() ) { return apply_filters( 'the_content', $content ); } return $content; } }