asp_indexing_keywords

Keywords before the index table engine inserts them into the database

This filter runs just before the tokenization process is completed and the keywords are sent to the database.

apply_filters('asp_indexing_keywords', $keywords);

Parameters

  • $keywords (array) - keywords array

add_filter( 'asp_indexing_keywords', 'asp_change_indexing_keywords', 10, 1 );
function asp_stop_load_css( $keywords) {
    return array_merge($keywords, array('word1', 'word2'));
}

Last updated