You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
63 lines
1.3 KiB
8 years ago
|
<?php
|
||
|
/**
|
||
|
* Class for public facing code
|
||
|
*
|
||
|
* @package All-in-One-SEO-Pack
|
||
|
* @since 2.3.6
|
||
|
*/
|
||
|
|
||
|
if ( ! class_exists( 'All_in_One_SEO_Pack_Front' ) ) {
|
||
|
|
||
|
/**
|
||
|
* Class All_in_One_SEO_Pack_Front
|
||
|
*
|
||
|
* @since 2.3.6
|
||
|
*/
|
||
|
class All_in_One_SEO_Pack_Front {
|
||
|
|
||
|
/**
|
||
|
* All_in_One_SEO_Pack_Front constructor.
|
||
|
*/
|
||
|
public function __construct() {
|
||
|
|
||
|
add_action( 'template_redirect', array( $this, 'noindex_follow_rss' ) );
|
||
|
add_action( 'template_redirect', array( $this, 'redirect_attachment' ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Noindex and follow RSS feeds.
|
||
|
*
|
||
|
* @Since 2.3.6
|
||
|
*/
|
||
|
public function noindex_follow_rss() {
|
||
|
if ( is_feed() && headers_sent() === false ) {
|
||
|
header( 'X-Robots-Tag: noindex, follow', true );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Redirect attachment to parent post.
|
||
|
*
|
||
|
* @since 2.3.9
|
||
|
*/
|
||
|
function redirect_attachment() {
|
||
|
|
||
|
global $aioseop_options;
|
||
|
if ( ! isset( $aioseop_options['aiosp_redirect_attachement_parent'] ) || $aioseop_options['aiosp_redirect_attachement_parent'] !== 'on' ) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
global $post;
|
||
|
if ( is_attachment() && ( ( is_object( $post ) && isset( $post->post_parent ) ) && ( is_numeric( $post->post_parent ) && $post->post_parent != 0 ) ) ) {
|
||
|
wp_safe_redirect( get_permalink( $post->post_parent ), 301 );
|
||
|
exit;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
$aiosp_front_class = new All_in_One_SEO_Pack_Front();
|
||
|
|