skip to Main Content

WordPress Code Snippets


How to Add Custom Meta Description in AIOSEO

To add a custom meta description for posts, this PHP snippet targets specific categories and sets a description. It’s perfect for improving SEO on category-based posts.

add_filter( 'aioseo_description', function ( $description ) {
    if ( is_single() && has_category( 'specific-category' ) ) {
        return 'This is a custom meta description for posts in the specific category.';
    }
    return $description;
});

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top