Hacked By AnonymousFox
<?php
/**
* Model for the SEO Meta table.
*
* @package Yoast\YoastSEO\Models
*/
namespace Yoast\YoastSEO\Models;
use Yoast\YoastSEO\Yoast_Model;
/**
* Table definition for the SEO Meta table.
*
* @property int $object_id
* @property int $internal_link_count
* @property int $incoming_link_count
*/
class SEO_Meta extends Yoast_Model {
/**
* Overwrites the default ID column name.
*
* @var string $_id_column
*/
public static $_id_column = 'object_id';
/**
* Finds the SEO meta for given post.
*
* @param int $post_id The post id.
*
* @return SEO_Meta The SEO meta.
*/
public static function find_by_post_id( $post_id ) {
return Yoast_Model::of_type( 'SEO_Meta' )
->where( 'object_id', $post_id )
->find_one();
}
}
Hacked By AnonymousFox1.0, Coded By AnonymousFox