phpdocs, phpcs
All checks were successful
All checks were successful
This commit is contained in:
parent
20f0ea2823
commit
3dbd3e21ee
1 changed files with 9 additions and 1 deletions
|
@ -260,6 +260,14 @@ abstract class Event extends Post {
|
||||||
return $summary;
|
return $summary;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the permalink shortcode from a WordPress template.
|
||||||
|
*
|
||||||
|
* This used for the summary template, because the summary usually gets,
|
||||||
|
* used when converting a object, where the URL is usually appended anyway.
|
||||||
|
*
|
||||||
|
* @param string $template The template string.
|
||||||
|
*/
|
||||||
public static function remove_ap_permalink_from_template( $template ) {
|
public static function remove_ap_permalink_from_template( $template ) {
|
||||||
$template = str_replace( '[ap_permalink]', '', $template );
|
$template = str_replace( '[ap_permalink]', '', $template );
|
||||||
$template = str_replace( '[ap_permalink type="html"]', '', $template );
|
$template = str_replace( '[ap_permalink type="html"]', '', $template );
|
||||||
|
|
Loading…
Reference in a new issue