🎉 Use coupon MYXERO to enjoy 20% recurring discount on any plan. View Pricing
BytNexo SEO Manager

BytNexo SEO Manager

0/5 (0 ratings) — active installs Updated Feb 25, 2026
<strong>Settings Page</strong> - Configure default social image, enabled post types, and social accounts

<strong>Settings Page</strong> - Configure default social image, enabled post types, and social accounts

BytNexo SEO Manager is a professional WordPress SEO plugin that provides essential SEO features without unnecessary bloat. Designed for speed and simplicity, it offers complete SEO control while maintaining optimal website performance.

Core Features:
Complete Meta Management – Custom titles and meta descriptions
Open Graph Integration – Control social sharing previews for platforms like Facebook, LinkedIn, and WhatsApp
Twitter Cards – Optimized Twitter sharing with large image cards
Schema.org Markup – JSON-LD structured data for better search visibility
Social Image Management – Default images with featured image priority
Canonical URLs – Prevent duplicate content issues
Robots Meta Control – Set noindex, nofollow directives
Quick Edit Support – Edit SEO from post listings
Custom Post Types – Enable SEO for any content type
Live Previews – See Google and Facebook previews instantly
Admin Columns – Quick SEO status overview

Why Choose BytNexo SEO Manager?

  • Lightweight & Fast: Minimal code, maximum performance – won’t slow down your site
  • Classic Editor Optimized: Seamless integration with WordPress Classic Editor
  • Essential SEO Features: Only essential features, no unnecessary addons or upsells
  • Professional Interface: Clean, tabbed metabox with intuitive design
  • Social Media Ready: Full Open Graph and Twitter Cards implementation
  • Structured Data: Automatic Schema.org JSON-LD markup following Google guidelines
  • Secure: WordPress coding standards and proper data sanitization
  • Easy Setup: Configure in minutes, works out of the box

Perfect For:

  • WordPress Site Owners wanting professional SEO without complexity
  • Developers who need clean, maintainable SEO code
  • Content Creators needing social media optimization
  • Agencies managing multiple client websites
  • Anyone using Classic Editor who wants seamless integration

Getting Started

Step 1: Configure Settings

  1. Go to “BytNexo SEO” in your WordPress admin menu
  2. General Configuration:
    • Select post types where SEO Manager should appear
    • Upload a default social image (recommended: 1200×630 pixels)
  3. Social Media Integration (Optional):
    • Add Twitter username for Twitter Card attribution
    • Add Facebook App ID for Facebook Insights

Step 2: Set Up Individual Posts/Pages

  1. Edit any post or page in Classic Editor
  2. Find the “BytNexo SEO Manager” metabox below the content editor
  3. Core SEO Tab:
    • Meta Title (50-60 characters optimal)
    • Meta Description (150-160 characters optimal)
    • Keywords (optional)
  4. Social Sharing Tab:
    • Open Graph titles and descriptions
    • Twitter Card titles and descriptions
    • Social image preview (featured images take priority)
  5. Advanced Tab:
    • Canonical URL override
    • Robots meta directives
  6. Preview Tab:
    • See Google search preview
    • See Facebook share preview

Step 3: Quick Editing

  1. Go to Posts All Posts or Pages All Pages
  2. Use “Quick Edit” to update SEO titles and descriptions in bulk
  3. The SEO column shows which posts have custom SEO configured

Privacy & Security

BytNexo SEO Manager follows strict WordPress security standards:

  • No Data Collection: Does not collect, store, or send user data to external servers
  • Data Sanitization: All user input is sanitized using WordPress security functions
  • Capability Checks: Proper user capability verification before any action
  • Nonce Protection: Security nonces for all form submissions to prevent CSRF attacks
  • Escaped Output: All frontend meta tags use proper escaping functions
  • WordPress Standards: Follows WordPress coding standards and security guidelines
  • Clean Uninstall: Completely removes all plugin data when uninstalled
  • Session Security: Uses WordPress authentication system securely

Developer Documentation

BytNexo SEO Manager is built with extensibility in mind. Developers can customize functionality using WordPress filters and actions.

Requires basic knowledge of WordPress hooks.

Filters

The following filters allow modification of SEO behavior and output.

// Filter enabled post types
apply_filters( 'bytnexo_seo_manager_enabled_post_types', $post_types );

// Add or remove SEO metabox fields
apply_filters( 'bytnexo_seo_manager_meta_fields', $meta_fields );

// Modify Schema.org JSON-LD structured data
apply_filters( 'bytnexo_seo_manager_schema_data', $schema, $post );

// Customize Open Graph meta tags
apply_filters( 'bytnexo_seo_manager_og_tags', $og_tags, $post );

// Customize Twitter Card meta tags
apply_filters( 'bytnexo_seo_manager_twitter_tags', $twitter_tags, $post );

// Change default social fallback image
apply_filters( 'bytnexo_seo_manager_fallback_image', $image_url );

// Modify archive page meta description
apply_filters( 'bytnexo_seo_manager_archive_description', $description );

Actions

The following actions allow execution of custom logic at specific points.

// Fires before SEO metabox output
do_action( 'bytnexo_seo_manager_before_metabox', $post );

// Fires after SEO metabox output
do_action( 'bytnexo_seo_manager_after_metabox', $post );

// Fires after settings are saved
do_action( 'bytnexo_seo_manager_settings_saved', $settings );

// Fires before frontend SEO tags output
do_action( 'bytnexo_seo_manager_frontend_output', $post );

Usage Examples

Below are practical examples demonstrating how to extend plugin functionality.

// Enable SEO for custom post types
add_filter( 'bytnexo_seo_manager_enabled_post_types', function( $post_types ) {
    $post_types[] = 'portfolio';
    $post_types[] = 'testimonial';
    return $post_types;
} );

// Modify schema data for WooCommerce products
add_filter( 'bytnexo_seo_manager_schema_data', function( $schema, $post ) {
    if ( is_singular( 'product' ) ) {
        $schema['@type'] = 'Product';
        $schema['brand'] = array(
            '@type' => 'Brand',
            'name'  => get_bloginfo( 'name' ),
        );
    }
    return $schema;
}, 10, 2 );

// Change default social image
add_filter( 'bytnexo_seo_manager_fallback_image', function( $image_url ) {
    return 'https://example.com/custom-default-image.jpg';
} );