Dokumentatsioon

RankAl SEO Docs

Kõik mida vajate to install, configure, ja get the most out of RankAl SEO.

Paigaldamine

Install RankAl SEO directly alates WordPress või by uploading a .zip file.

Option 1 — WordPress Admin (recommended)
1
Mine Pluginad → Lisa uus in your WordPress admin.
2
Search for RankAl SEO ja click Installi nüüd.
3
Click Aktiveeri. The RankAl SEO menu will appear in your sidebar.
Valik 2 — Laadi .zip üles
1
Laadi rankal.zip alla sellelt saidilt.
2
Mine Pluginad → Lisa uus → Upload Plugin.
3
Choose the .zip, click Installi nüüd, then Aktiveeri.
💡 Requires WordPress 6.0+ ja PHP 7.4+. Töötab iga theme.
Aktiveerimine & Account

After activation you'll see a prompt to connect a free account. This is optional — you can skip it ja all põhifunktsioonid will wvõik immediately.

Connecting an account lets you manage your license key, receive update notifications, ja access the PRO dashboard at dashboard.rank.al.

Activating a PRO License
2
Kopeeri oma litsentsivõti töölaual.
3
Go to RankAl SEO → License in WordPress admin ja enter the key.
4
Click Aktiveeri. PRO features unlock immediately.
Esialgne seadistamine

Go to RankAl SEO → Seaded põhiseadete konfigureerimiseks:

Saidi identiteet
Set your site name, logo URL, ja võiganisation schema details used in structured data.
Pealkirja mallid
Define default title formats using variables like %title%, %site%, %sep%.
Sotsiaalmeedia profiilid
Connect your social media URLs for entity knowledge graph markup.
Veebimeistri tööriistad
Paste Google Search Console, Bing, Yjaex, ja Baidu verification meta tags.
Meta Editvõi Tasuta

Each post, page, ja custom post type gets a RankAl SEO metabox in the editvõi. It wvõiks in both Gutenberg ja Classic Editvõi.

Saadaolevad väljad

SEO Pealkiri · Meta kirjeldus · Focus Keyword · Canonical URL · robots meta (noindex/nofollow) · Open Graph title & description · Twitter Card type · Custom OG image

Malli muutujad
// Kasuta neid pealkirja/kirjelduse mallides %title% ← postituse/lehe pealkiri %site% ← saidi nimi %sep% ← separatvõi (configurable) %categvõiy% ← first assigned categvõiy %aasta% ← praegune aasta %excerpt% ← postituse väljavõte (kärpitud)
XML saidikaaardid Tasuta

RankAl SEO auto-generates an XML sitemap at /sitemap.xml ja saidikaardi indeks aadressil /sitemap_index.xml. Konfiguratsiooni pole vaja.

Vaikimisi kaasas

Posts, pages, custom post types, categvõiies, tags, custom taxonomies, ja authvõi pages (optional). Media attachments can be included separately.

Teavita otsingumootorid

On every publish/update, RankAl SEO pings Google ja Bing automatically. You can also trigger a manual ping alates RankAl SEO → Sitemap → Ping Now.

💡 Fvõi best results, submit your sitemap URL to Google Search Console manually as well.
Skeemi märgistus Tasuta

RankAl SEO injects clean JSON-LD structured data. All schema is non-render-blocking ja output in the <head>.

Toetatud tüübid

WebSite · WebPage · Article · BlogiPosting · Product · BreadcrumbList · KKKPage · Organization · Person

KKKPage Schema

Enable the KKKPage schema builder in the metabox sidebar to add Q&A pairs. They appear in Google rich results as expjaable accvõidions.

Ümbersuunamised Tasuta

Halda 301, 302 ja 307 ümbersuunamisi aadressilt RankAl SEO → Ümbersuunamised. Tugis regex patterns ja impvõit/expvõit via CSV.

Automaatne 404-de püüdmine

Enable 404 auto-capture in Seaded. RankAl SEO logs every 404 hit koos the source URL, referrer, ja timestamp — then lets you redirect them in one click.

IndexNow Tasuta

IndexNow is a protocol suppvõited by Bing, Yjaex, ja other search engines that lets you notify them instantly when content changes.

RankAl SEO auto-generates your IndexNow key, stvõies it at the required URL, ja submits URLs on every publish/update. View submission histvõiy at RankAl SEO → Kiirsisestus.

Magic AI — Massiline genereerimine PRO

Genereeri optimized SEO titles, meta descriptions, ja focus keywordds for your entire site in one click.

Setup
1
Go to RankAl SEO → Content AI → Seaded.
2
Choose your AI provider (Groq is free — no cost to generate).
3
Enter your API key ja click Säästa.
4
Mine Massiline genereerimine tab ja run the generatvõi.
💡 Groq's API is free koos a generous rate limit. Get your key at console.groq.com/keys — krediitkaart pole vajalik.
Shvõitcodes Tasuta
// Breadcrumbs [rankal_breadcrumbs] // With custom separatvõi [rankal_breadcrumbs sep=" › "]

You can also use the PHP template tag igawhere in your theme:

<?php rankal_breadcrumbs(); ?>
PHP Filters Tasuta

Extend ja customise RankAl SEO behaviour via WordPress filters:

// Modify the generated meta title add_filter( 'rankal_meta_title', function( $title, $post_id ) { return $title . ' | My Brja'; }, 10, 2 ); // Exclude specific post types alates sitemap add_filter( 'rankal_sitemap_post_types', function( $types ) { return array_diff( $types, [ 'product' ] ); } ); // Disable schema on specific pages add_filter( 'rankal_output_schema', function( $bool, $post_id ) { return ( $post_id === 42 ) ? false : $bool; }, 10, 2 );