Meshr – AI Internal Linking

Descrição

Meshr – AI Internal Linking enables seamless integration between your WordPress site and Meshr’s AI-powered internal linking platform. Works perfectly with Yoast SEO, RankMath, and other major SEO plugins.

Unlike keyword-based linkers, Meshr uses semantic AI analysis to understand content meaning and context, discovering hidden internal linking opportunities that could boost your organic traffic. Most websites miss 60%+ of their internal linking potential – Meshr finds them automatically.

Why WordPress Users Choose Meshr:

  • Yoast SEO & RankMath Compatible – Works seamlessly with your existing SEO plugins
  • Custom Post Type Support – Analyzes and links all your content types
  • Bulk Link Management – Review and approve AI suggestions in bulk
  • 2-Minute Setup – Connect your site via Application Passwords, no coding required
  • AI-Powered Analysis – Semantic topic clustering and context-aware link scoring
  • Automatic Updates – Link changes are applied directly to your WordPress posts and pages via secure REST API

This lightweight plugin provides REST API endpoints that allow Meshr to discover your site, verify connectivity, and automatically update internal links across your content using AI-driven recommendations.

Features:

  • Works with Yoast SEO & RankMath – Compatible with major WordPress SEO plugins
  • AI-powered semantic linking – Understands content meaning, not just keywords
  • Custom post type support – Analyzes and links all your WordPress content types
  • Bulk link management – Review and approve AI suggestions in bulk from Meshr dashboard
  • Orphan page detection – Find and fix pages with zero internal links
  • Automated internal link optimization – Boost SEO rankings with AI-driven recommendations
  • 2-minute setup – Configure entirely via WordPress Application Passwords
  • REST API integration – Secure, automatic link updates without manual work
  • Minimal footprint – Doesn’t store data locally, works with your existing WordPress setup
  • Security-first design – Proper capability checks and sanitization

How It Works:

  1. Generate a WordPress Application Password in your user profile
  2. Configure the credentials in your Meshr dashboard
  3. Meshr discovers your site and can automatically update internal links
  4. All communication happens securely via WordPress REST API with Basic Authentication

What Meshr Does for WordPress:

Meshr’s AI analyzes your WordPress content using semantic analysis, clusters related topics, and suggests optimal internal linking strategies. The connector plugin allows Meshr to apply these intelligent link updates directly to your WordPress posts, pages, and custom post types – improving SEO rankings, user engagement, and content discoverability automatically.

API Endpoints

Health Check

GET /wp-json/meshr/v1/check

Returns site information and connectivity status. No authentication required for basic checks.

Bulk Link Update

POST /wp-json/meshr/v1/bulk-link-update

Requires authentication via WordPress Application Password (Basic Auth).

Request body:
json
[
{
"post_id": 123,
"from": "https://example.com/old-url",
"to": "https://example.com/new-url"
}
]

Webhook (Optional)

POST /wp-json/meshr/v1/webhook

Requires HMAC signature verification. Configure MESHR_WEBHOOK_SECRET in wp-config.php.

Webhook requests include an X-Meshr-Signature header with the HMAC-SHA256 signature.

Privacy Policy

This plugin does not collect, store, or transmit any personal data. All communication occurs between your WordPress site and Meshr via REST API endpoints. No external services are contacted by the plugin itself. Users should refer to Meshr’s privacy policy for information about how Meshr handles data.

Support

For support, documentation, and more information, visit:

Ecrãs

Instalação

  1. Upload the plugin files to the /wp-content/plugins/meshr-ai-internal-linking directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Generate a WordPress Application Password:
    • Go to Users Your Profile
    • Scroll to “Application Passwords”
    • Enter a name (e.g., “Meshr”) and click “Add New Application Password”
    • Copy the generated username and password
  4. In your Meshr dashboard, enter your WordPress site URL and the Application Password credentials
  5. Meshr will automatically discover your site and be ready to update links

Perguntas frequentes

Does this plugin store any data?

No. This plugin does not store any data locally. It only provides API endpoints for Meshr to communicate with your WordPress site.

Do I need to configure anything in WordPress?

No admin UI is required. You only need to generate a WordPress Application Password in your user profile and provide it to Meshr.

Is my site secure?

Yes. The plugin uses WordPress’s built-in authentication system (Application Passwords), proper capability checks (current_user_can), and sanitizes all inputs. Webhook endpoints use HMAC signature verification when enabled.

Can I test the connection?

Yes. Once configured, you can test the health check endpoint:

GET https://your-site.com/wp-json/meshr/v1/check

You’ll need to authenticate using Basic Auth with your Application Password credentials.

How do I enable webhook support?

Add this constant to your wp-config.php file:

define( 'MESHR_WEBHOOK_SECRET', 'your-secret-key-here' );

Replace your-secret-key-here with a strong, random string. Webhook requests from Meshr will include an X-Meshr-Signature header for verification.

Avaliações

Este plugin não tem avaliações.

Contribuidores e programadores

“Meshr – AI Internal Linking” é software de código aberto. As seguintes pessoas contribuíram para este plugin:

Contribuidores

Registo de alterações

1.0.0

  • Initial release
  • Health check endpoint (GET /meshr/v1/check)
  • Bulk link update endpoint (POST /meshr/v1/bulk-link-update)
  • Optional webhook endpoint with HMAC verification (POST /meshr/v1/webhook)
  • Zero admin UI, minimal footprint
  • Full WordPress coding standards compliance