Home / Admin / Modify LLMS Title for a Specific Post
Duplicate Snippet

Embed Snippet on Your Site

Modify LLMS Title for a Specific Post

This snippet modifies the title shown in llms.txt and llms-full.txt for a specific post ID.

<10
Code Preview
php
<?php
add_filter( 'aioseo_llms_post_title', 'aioseo_filter_llms_post_title', 10, 2 );
function aioseo_filter_llms_post_title( $title, $post = null ) {
	if ( is_a( $post, 'WP_Post' ) && 14 === $post->ID ) {
		$title = 'Featured: ' . $title;
	}
	return $title;
}

Comments

Add a Comment