PATH:
home
/
letacommog
/
lescompagnons
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
actions
/
indexation
<?php /** * Reindexation action for indexables * * @package Yoast\WP\SEO\Actions\Indexation */ namespace Yoast\WP\SEO\Actions\Indexation; interface Indexation_Action_Interface { /** * Returns the total number of unindexed objects. * * @return int The number of unindexed objects. */ public function get_total_unindexed(); /** * Index a number of objects. * * NOTE: ALWAYS use limits, this method is intended to be called multiple times over several requests. * * For indexation that requires JavaScript simply return the objects that should be indexed. * * @return array The reindexed objects. */ public function index(); /** * Returns the number of objects that will be indexed in a single indexation pass. * * @return int The limit. */ public function get_limit(); }
[+]
..
[-] indexable-general-indexation-action.php
[edit]
[-] indexable-post-indexation-action.php
[edit]
[-] indexation-action-interface.php
[edit]
[-] indexable-term-indexation-action.php
[edit]
[-] indexable-post-type-archive-indexation-action.php
[edit]