how to remove feed link
how to remove feed link from wp_head thrue my functions.php?
Question is closed for new answers.
Siamion Gavrilenko selected answer
in file anspress-question-answerincludesclass-theme.php comment out the following code
if ( is_anspress() ) { if ( is_anspress() ) { echo ‘<link href=”‘ . esc_url( home_url( ‘/feed/question-feed’ ) ) . ‘” title=”‘ . esc_attr__( ‘Question Feed’, ‘anspress-question-answer’ ) . ‘” type=”application/rss+xml” rel=”alternate”>’; }
Siamion Gavrilenko selected as best answer