Home / Admin / Remove the LLMS Description for a Specific Post
Duplicate Snippet

Embed Snippet on Your Site

Remove the LLMS Description for a Specific Post

This snippet removes the description from llms.txt for a specific post ID.

<10
Code Preview
php
<?php
add_filter( 'aioseo_llms_post_description', 'aioseo_filter_remove_llms_post_description', 10, 2 );
function aioseo_filter_remove_llms_post_description( $description, $post = null ) {
    if ( is_a( $post, 'WP_Post' ) && 14 === $post->ID ) {
        return '';
    }
    return $description;
}

Comments

Add a Comment