Plugin Directory

Changeset 869215


Ignore:
Timestamp:
03/04/2014 12:45:50 PM (12 years ago)
Author:
primestrategy
Message:

WP SiteManager commit 1.0.13

Location:
wp-sitemanager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-sitemanager/trunk/modules/meta-manager.php

    r736665 r869215  
    5050        $this->ogp_image = get_option( 'ogp_image' );
    5151        $this->setting = wp_parse_args( get_option( 'meta_manager_settings', array() ), $this->default );
     52       
     53        if ( isset( $this->setting['ogp_output'] ) && $this->setting['ogp_output'] ) {
     54            add_filter( 'jetpack_enable_open_graph', '__return_false' );
     55        }
    5256    }
    5357   
     
    227231        foreach ( $this->setting['includes_taxonomies'] as $taxonomy ) {
    228232            $taxonomy = get_taxonomy( $taxonomy );
    229             if ( in_array( $post->post_type, $taxonomy->object_type ) ) {
     233            if ( $taxonomy && in_array( $post->post_type, $taxonomy->object_type ) ) {
    230234                $terms = get_the_terms( $post->ID, $taxonomy->name );
    231235                if ( $terms ) {
  • wp-sitemanager/trunk/readme.txt

    r766061 r869215  
    33Tags: cms, mobile, sitemap, pager, page navi, breadcrumb
    44Requires at least: 3.5
    5 Tested up to: 3.6
    6 Stable tag: 1.0.12
     5Tested up to: 3.8
     6Stable tag: 1.0.13
    77
    88WP SiteManager is an integrated package comprising of necessary functions for using WordPress as a CMS.
     
    3434
    3535== Changelog ==
     36= 1.0.13 =
     37* fix : conflict with jetpack ogp.
     38
    3639= 1.0.12 =
    3740* fix : Strict Standards error.
  • wp-sitemanager/trunk/wp-sitemanager.php

    r766061 r869215  
    55 Description: WP SiteManager は、WordPress を CMS として利用する際に必須となる機能を複数搭載した統合プラグインです。
    66 Author: Prime Strategy Co.,LTD.
    7  Version: 1.0.12
     7 Version: 1.0.13
    88 Author URI: http://www.prime-strategy.co.jp/
    99 License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.