the_content, $request->get_param( content

the_content, $request->get_param( content

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('the_content, $request->get_param( content') is found 1 times:

  • /app/Common/Api/WritingAssistant.php line 159
    		}
    
    		$title       = $request->get_param( 'title' );
    		$description = $request->get_param( 'description' );
    		$content     = apply_filters( 'the_content', $request->get_param( 'content' ) ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
    		if ( empty( $content ) || empty( $postId ) ) {
    			return new \WP_REST_Response( [
    				'success' => false,
    				'message' => __( 'Empty Content or Post ID', 'all-in-one-seo-pack' )
    			], 200 );
    		}