File Editor
Directories:
.. (Back)
admin
debug
open-graph
slack
twitter
webmaster
Files:
abstract-indexable-presenter.php
abstract-indexable-tag-presenter.php
abstract-presenter.php
breadcrumbs-presenter.php
canonical-presenter.php
meta-author-presenter.php
meta-description-presenter.php
rel-next-presenter.php
rel-prev-presenter.php
robots-presenter.php
robots-txt-presenter.php
schema-presenter.php
score-icon-presenter.php
title-presenter.php
url-list-presenter.php
Create New File
Create
Edit File: abstract-presenter.php
<?php namespace Yoast\WP\SEO\Presenters; /** * Abstract_Presenter class. */ abstract class Abstract_Presenter { /** * Returns the output as string. * * @return string The output. */ abstract public function present(); /** * Returns the output as string. * * @return string The output. */ public function __toString() { return $this->present(); } }
Save Changes
Rename File
Rename