blob: 35705cad4d7fa28181865df82db65704ff82ac56 (
plain)
1
2
3
|
<p>You will need to <a href="/creating-a-micropub-endpoint">create a Micropub endpoint</a> for your website which can create posts on your site. Once you've created the Micropub endpoint, you can indicate its location using the markup below.</p>
<p><pre><code><link rel="micropub" href="https://<?= (property_exists($this, 'meParts') ? $this->meParts['host'] : 'example.com') ?>/micropub"></code></pre></p>
<p><pre><code>Link: <https://<?= (property_exists($this, 'meParts') ? $this->meParts['host'] : 'example.com') ?>/micropub>; rel="micropub"</code></pre></p>
|