PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wordpress-seo
/
src
/
presentations
<?php namespace Yoast\WP\SEO\Presentations; /** * Class Indexable_Static_Home_Page_Presentation. * * Presentation object for indexables. */ class Indexable_Static_Home_Page_Presentation extends Indexable_Post_Type_Presentation { /** * Wraps the get_paginated_url pagination helper method. * * @param string $url The un-paginated URL of the current archive. * @param string $page The page number to add on to $url for the $link tag. * * @return string The paginated URL. */ protected function get_paginated_url( $url, $page ) { return $this->pagination->get_paginated_url( $url, $page ); } /** * Generates the Open Graph type. * * @return string The Open Graph type. */ public function generate_open_graph_type() { return 'website'; } }
[-] indexable-home-page-presentation.php
[edit]
[-] archive-adjacent-trait.php
[edit]
[-] indexable-search-result-page-presentation.php
[edit]
[-] indexable-date-archive-presentation.php
[edit]
[-] indexable-author-archive-presentation.php
[edit]
[-] indexable-static-posts-page-presentation.php
[edit]
[-] indexable-error-page-presentation.php
[edit]
[+]
..
[-] indexable-term-archive-presentation.php
[edit]
[-] indexable-static-home-page-presentation.php
[edit]
[-] indexable-post-type-archive-presentation.php
[edit]
[-] indexable-post-type-presentation.php
[edit]
[-] indexable-presentation.php
[edit]
[-] abstract-presentation.php
[edit]