PATH:
home
/
letacommog
/
menuiserie-convert
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
<?php /** * Model for the SEO Meta table. * * @package Yoast\YoastSEO\Models */ namespace Yoast\WP\SEO\Models; use Yoast\WP\Lib\Model; /** * Table definition for the SEO Meta table. * * @property int $id * @property string $url * @property int $post_id * @property int $target_post_id * @property string $type */ class SEO_Links extends Model { /** * Which columns contain int values. * * @var array */ protected $int_columns = [ 'id', 'post_id', 'target_post_id', ]; }
[+]
..
[-] indexable-hierarchy.php
[edit]
[-] primary-term.php
[edit]
[-] indexable-extension.php
[edit]
[-] seo-links.php
[edit]
[-] indexable.php
[edit]
[-] seo-meta.php
[edit]