finally fixed backlink in excerpt/summary posts
This commit is contained in:
parent
f542c18eab
commit
94ba1666f2
4 changed files with 15 additions and 5 deletions
|
@ -4,7 +4,7 @@
|
|||
**Tags:** OStatus, fediverse, activitypub, activitystream
|
||||
**Requires at least:** 4.7
|
||||
**Tested up to:** 5.1
|
||||
**Stable tag:** 0.4.2
|
||||
**Stable tag:** 0.4.3
|
||||
**Requires PHP:** 5.6
|
||||
**License:** MIT
|
||||
**License URI:** http://opensource.org/licenses/MIT
|
||||
|
@ -55,6 +55,10 @@ To implement:
|
|||
|
||||
Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||
|
||||
### 0.4.3 ###
|
||||
|
||||
* finally fixed backlink in excerpt/summary posts
|
||||
|
||||
### 0.4.2 ###
|
||||
|
||||
* fixed backlink in excerpt/summary posts (thanks @depone)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: ActivityPub
|
||||
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
|
||||
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
|
||||
* Version: 0.4.2
|
||||
* Version: 0.4.3
|
||||
* Author: Matthias Pfefferle
|
||||
* Author URI: https://notiz.blog/
|
||||
* License: MIT
|
||||
|
|
|
@ -204,7 +204,9 @@ class Activitypub_Post {
|
|||
|
||||
public function get_the_summary() {
|
||||
if ( 'Article' === $this->get_object_type() ) {
|
||||
return $this->get_the_post_excerpt( 400 );
|
||||
$excerpt = $this->get_the_post_excerpt( 400 );
|
||||
|
||||
return html_entity_decode( $excerpt, ENT_QUOTES, 'UTF-8' );
|
||||
}
|
||||
|
||||
return null;
|
||||
|
@ -244,7 +246,7 @@ class Activitypub_Post {
|
|||
}
|
||||
}
|
||||
|
||||
return html_entity_decode( $excerpt, ENT_QUOTES, 'UTF-8' );
|
||||
return $excerpt;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
|
|||
Tags: OStatus, fediverse, activitypub, activitystream
|
||||
Requires at least: 4.7
|
||||
Tested up to: 5.1
|
||||
Stable tag: 0.4.2
|
||||
Stable tag: 0.4.3
|
||||
Requires PHP: 5.6
|
||||
License: MIT
|
||||
License URI: http://opensource.org/licenses/MIT
|
||||
|
@ -55,6 +55,10 @@ To implement:
|
|||
|
||||
Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||
|
||||
= 0.4.3 =
|
||||
|
||||
* finally fixed backlink in excerpt/summary posts
|
||||
|
||||
= 0.4.2 =
|
||||
|
||||
* fixed backlink in excerpt/summary posts (thanks @depone)
|
||||
|
|
Loading…
Reference in a new issue