Merge pull request #82 from BenLubar-PR/title
Use the "summary" property for a title as Mastodon does.
This commit is contained in:
commit
87aa2e1af1
1 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@ class Post {
|
||||||
'type' => $this->get_object_type(),
|
'type' => $this->get_object_type(),
|
||||||
'published' => \date( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date ) ),
|
'published' => \date( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date ) ),
|
||||||
'attributedTo' => \get_author_posts_url( $post->post_author ),
|
'attributedTo' => \get_author_posts_url( $post->post_author ),
|
||||||
'summary' => $this->get_the_summary(),
|
'summary' => $this->get_the_title(),
|
||||||
'inReplyTo' => null,
|
'inReplyTo' => null,
|
||||||
'content' => $this->get_the_content(),
|
'content' => $this->get_the_content(),
|
||||||
'contentMap' => array(
|
'contentMap' => array(
|
||||||
|
@ -207,11 +207,11 @@ class Post {
|
||||||
return $this->get_the_post_content();
|
return $this->get_the_post_content();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_the_summary() {
|
public function get_the_title() {
|
||||||
if ( 'Article' === $this->get_object_type() ) {
|
if ( 'Article' === $this->get_object_type() ) {
|
||||||
$excerpt = $this->get_the_post_excerpt( 400 );
|
$title = \get_the_title( $this->post );
|
||||||
|
|
||||||
return \html_entity_decode( $excerpt, ENT_QUOTES, 'UTF-8' );
|
return \html_entity_decode( $title, ENT_QUOTES, 'UTF-8' );
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue