PressBooks\Modules\Export\Xhtml\Xhtml11::endnoteShortcode PHP Метод

endnoteShortcode() публичный Метод

Convert footnotes to endnotes by moving them to the end of the_content()
См. также: doEndnotes
public endnoteShortcode ( array $atts, null $content = null ) : string
$atts array
$content null
Результат string
    function endnoteShortcode($atts, $content = null)
    {
        global $id;
        if (!$content) {
            return '';
        }
        $this->endnotes[$id][] = trim($content);
        return '<sup class="endnote">' . count($this->endnotes[$id]) . '</sup>';
    }