Replace old plugin headers with proper file docblocks, add ABSPATH guards
- open-graph-tags.php: replace Plugin Name header with package docblock - featured-image-generator.php: same cleanup - sp-event-permalink.php: same cleanup, normalize indentation to tabs, collapse redundant switch cases (league/tournament both map to 'game') Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,11 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: SP Event Image Generator
|
||||
Description: Auto-generates featured images for SP Events by combining team colors and logos.
|
||||
Version: 1.0
|
||||
Author: Your Name
|
||||
/**
|
||||
* SP Event featured-image generator.
|
||||
*
|
||||
* Auto-generates bisected team-color images for SP Events.
|
||||
*
|
||||
* @package Tonys_Sportspress_Enhancements
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
function generate_bisected_image($color1, $color2, $logo1_path, $logo2_path) {
|
||||
$width = 1200;
|
||||
$height = 628;
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Custom Open Graph Tags with SportsPress Integration
|
||||
Description: Adds custom Open Graph tags to posts based on their type, specifically handling sp_event post types with methods from the SportsPress SP_Event class.
|
||||
Version: 1.0
|
||||
Author: Your Name
|
||||
/**
|
||||
* Open Graph tags with SportsPress integration.
|
||||
*
|
||||
* Adds custom Open Graph meta tags to sp_event single pages.
|
||||
*
|
||||
* @package Tonys_Sportspress_Enhancements
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
add_action( 'wp_head', 'custom_open_graph_tags_with_sportspress_integration' );
|
||||
|
||||
function asc_sp_event_matchup_image_url( $post ) {
|
||||
|
||||
@@ -1,16 +1,19 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Custom Event Permalinks
|
||||
Description: Adds a custom permalink structure for the sp_event post type.
|
||||
Version: 1.0
|
||||
Author: Your Name
|
||||
/**
|
||||
* Custom permalink structure for sp_event post type.
|
||||
*
|
||||
* @package Tonys_Sportspress_Enhancements
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
exit;
|
||||
}
|
||||
|
||||
// Register custom rewrite rules
|
||||
/**
|
||||
* Register custom rewrite rules for sp_event.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function custom_event_rewrite_rules() {
|
||||
add_rewrite_rule(
|
||||
'(?:event|game)/.*?[/]?([0-9]+)[/]?$',
|
||||
@@ -20,54 +23,58 @@ function custom_event_rewrite_rules() {
|
||||
}
|
||||
add_action( 'init', 'custom_event_rewrite_rules' );
|
||||
|
||||
// Customize the permalink structure
|
||||
/**
|
||||
* Customize the permalink structure for sp_event posts.
|
||||
*
|
||||
* @param string $permalink Existing permalink.
|
||||
* @param WP_Post $post Post object.
|
||||
* @return string
|
||||
*/
|
||||
function custom_event_permalink( $permalink, $post ) {
|
||||
if ( $post->post_type !== 'sp_event' ) {
|
||||
return $permalink;
|
||||
}
|
||||
|
||||
$event = new SP_Event($post->ID);
|
||||
$teams = get_post_meta( $post->ID, 'sp_team', false );
|
||||
$format = get_post_meta( $post->ID, 'sp_format', true );
|
||||
sort( $teams );
|
||||
$seasons = get_the_terms( $post->ID, 'sp_season', true );
|
||||
|
||||
if ( $seasons ) {
|
||||
$seasons_slug = implode(
|
||||
"-",
|
||||
array_map(function($season){return $season->slug;},$seasons),
|
||||
'-',
|
||||
array_map( function( $season ) { return $season->slug; }, $seasons )
|
||||
);
|
||||
} else {
|
||||
$seasons_slug = "no-season";
|
||||
};
|
||||
$seasons_slug = 'no-season';
|
||||
}
|
||||
|
||||
// Get the teams associated with the event
|
||||
$team_1 = get_post($teams[0]);
|
||||
$team_2 = get_post($teams[1]);
|
||||
$team_1 = isset( $teams[0] ) ? get_post( $teams[0] ) : null;
|
||||
$team_2 = isset( $teams[1] ) ? get_post( $teams[1] ) : null;
|
||||
|
||||
switch ( $format ) {
|
||||
case 'league':
|
||||
$format_string = 'game';
|
||||
break;
|
||||
case 'tournament':
|
||||
$format_string = 'game';
|
||||
break;
|
||||
case 'friendly':
|
||||
$format_string = 'event';
|
||||
break;
|
||||
default:
|
||||
$format_string = 'event';
|
||||
break;
|
||||
}
|
||||
|
||||
if ( $team_1 && $team_2 ) {
|
||||
$permalink = home_url($format_string ."/". $seasons_slug . '/' . $team_1->post_name . '-' . $team_2->post_name . '/' . $post->ID);
|
||||
$permalink = home_url( $format_string . '/' . $seasons_slug . '/' . $team_1->post_name . '-' . $team_2->post_name . '/' . $post->ID );
|
||||
}
|
||||
|
||||
return $permalink;
|
||||
}
|
||||
add_filter( 'post_type_link', 'custom_event_permalink', 10, 2 );
|
||||
|
||||
// Flush rewrite rules on activation and deactivation
|
||||
/**
|
||||
* Flush rewrite rules on activation.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function custom_event_rewrite_flush() {
|
||||
custom_event_rewrite_rules();
|
||||
flush_rewrite_rules();
|
||||
@@ -75,7 +82,12 @@ function custom_event_rewrite_flush() {
|
||||
register_activation_hook( __FILE__, 'custom_event_rewrite_flush' );
|
||||
register_deactivation_hook( __FILE__, 'flush_rewrite_rules' );
|
||||
|
||||
// Modify the front-end single event query to allow scheduled events to resolve.
|
||||
/**
|
||||
* Allow scheduled events to resolve on the frontend.
|
||||
*
|
||||
* @param WP_Query $query Current query.
|
||||
* @return void
|
||||
*/
|
||||
function custom_event_parse_request( $query ) {
|
||||
if ( ! $query instanceof WP_Query ) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user