Files
roi-theme/wp-content/plugins/seo-by-rank-math/includes/frontend/paper/class-misc.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

74 lines
946 B
PHP
Executable File

<?php
/**
* The Misc paper.
*
* @since 1.0.28
* @package RankMath
* @subpackage RankMath\Paper
* @author Rank Math <support@rankmath.com>
*/
namespace RankMath\Paper;
defined( 'ABSPATH' ) || exit;
/**
* Misc class.
*/
class Misc implements IPaper {
/**
* Retrieves the SEO title.
*
* @return string
*/
public function title() {
return '';
}
/**
* Retrieves the SEO description.
*
* @return string
*/
public function description() {
return '';
}
/**
* Retrieves the robots.
*
* @return string
*/
public function robots() {
return [];
}
/**
* Retrieves the advanced robots.
*
* @return array
*/
public function advanced_robots() {
return [];
}
/**
* Retrieves the canonical URL.
*
* @return array
*/
public function canonical() {
return [];
}
/**
* Retrieves meta keywords.
*
* @return string
*/
public function keywords() {
return '';
}
}