aioseo_llms_term_title

aioseo_llms_term_title

Hook Type: filter

See hook in core

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

apply_filters('aioseo_llms_term_title') is found 1 times:

  • /app/Common/Llms/Llms.php line 401
    	 * @param  bool     $llmsFull Whether to include the llms-full.txt file.
    	 * @return string             The content of the llms.txt file.
    	 */
    	protected function getTermContent( $term, $taxonomy, $llmsFull = false ) { // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
    		$title   = apply_filters( 'aioseo_llms_term_title', $term->name, $term );
    		$content = '- [' . aioseo()->helpers->decodeHtmlEntities( $title ) . '](' . aioseo()->helpers->decodeUrl( get_term_link( $term, $taxonomy ) ) . ')';
    
    		$description = aioseo()->meta->description->getTermDescription( $term );
    		$description = apply_filters( 'aioseo_llms_term_description', $description, $term );
    		if ( ! empty( $description ) ) {
    			$content .= ' - ' . aioseo()->helpers->decodeHtmlEntities( $description );