Plugin Directory

Changeset 3490685


Ignore:
Timestamp:
03/25/2026 09:20:59 AM (4 days ago)
Author:
FARAZFRANK
Message:

New plugin update v0.3.3
Homerix data added

Location:
wpfrank-companion
Files:
298 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpfrank-companion/tags/0.3.2/readme.txt

    r3373420 r3490685  
    22Contributors: FARAZFRANK
    33Tags: frontpage, theme page, featured, widgets, admin, companion, homepage, WordPress frontpage, template, theme builder, page builder
     4Requires at least: 5.0
    45Tested up to: 6.8.3
    56Stable tag: 0.3.2
    6 Requires PHP: 4.0
    7 Requires at least: 4.0
    87License: GPLv3 or later
    98License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • wpfrank-companion/trunk/readme.txt

    r3373420 r3490685  
    22Contributors: FARAZFRANK
    33Tags: frontpage, theme page, featured, widgets, admin, companion, homepage, WordPress frontpage, template, theme builder, page builder
    4 Tested up to: 6.8.3
    5 Stable tag: 0.3.2
     4Tested up to: 6.9
     5Stable tag: 0.3.3
    66Requires PHP: 4.0
    77Requires at least: 4.0
     
    6464
    6565== Changelog ==
     66= 0.3.3 =
     67* Homerix theme frontpage sections and customizer settings added.
     68* Homerix page templates, AJAX handlers, integrations, and default content support added.
     69
    6670= 3.2 =
    6771* Leather House theme demo data added.
  • wpfrank-companion/trunk/wpfrank-companion.php

    r3324904 r3490685  
    11<?php
    2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     2if ( ! defined( 'ABSPATH' ) ) {
     3    exit; // Exit if accessed directly
     4}
    35
    46/**
    5 * Plugin Name:  WPFrank Companion
    6 * Plugin URI:   https://wordpress.org/plugins/wpfrank-companion
    7 * Description:  WPFrank Companion plugin provides themes extra settings for front page.
    8 * Version:      0.3.2
    9 * Author:       WP Frank
    10 * Author URI:   https://wpfrank.com/
    11 * Tested up to: 6.8
    12 * Requires:     4.0 or higher
    13 * License:      GPLv3 or later
    14 * License URI:  http://www.gnu.org/licenses/gpl-3.0.html
    15 * Requires PHP: 4.0
    16 * Text Domain:  wpfrank-companion
    17 * Domain Path:  /languages
     7* Plugin Name:  WPFrank Companion
     8* Plugin URI:   https://wordpress.org/plugins/wpfrank-companion
     9* Description:  WPFrank Companion plugin provides themes extra settings for front page.
     10* Version:      0.3.3
     11* Author:       WP Frank
     12* Author URI:   https://wpfrank.com/
     13* Tested up to: 6.9
     14* Requires:     4.0 or higher
     15* License:      GPLv3 or later
     16* License URI:  http://www.gnu.org/licenses/gpl-3.0.html
     17* Requires PHP: 4.0
     18* Text Domain:  wpfrank-companion
     19* Domain Path:  /languages
    1820*/
    1921
     
    3638define( 'wpfrank_companion_plugin_dir', plugin_dir_path( __FILE__ ) );
    3739
    38 if( !function_exists('wpfrank_companion_init') ){
    39     function wpfrank_companion_init(){
     40if ( ! function_exists( 'wpfrank_companion_init' ) ) {
     41    function wpfrank_companion_init() {
    4042        $activate_theme_data = wp_get_theme(); // getting current theme data
    41         $activate_theme = $activate_theme_data->name;
     43        $activate_theme      = $activate_theme_data->name;
    4244
    43         if( 'BusinessExpo' == $activate_theme || 'Architect Designs' == $activate_theme || 'Medical Health' == $activate_theme || 'Building Construction' == $activate_theme ){
    44             require("inc/businessexpo/businessexpo.php");
     45        if ( 'BusinessExpo' == $activate_theme || 'Architect Designs' == $activate_theme || 'Medical Health' == $activate_theme || 'Building Construction' == $activate_theme ) {
     46            require 'inc/businessexpo/businessexpo.php';
    4547        }
    4648
    47         if( 'Crypto AirDrop' == $activate_theme || 'Crypto Compare' == $activate_theme || 'Crypto Mining' == $activate_theme || 'Crypto Token' == $activate_theme || 'Meme Token'== $activate_theme ){
    48             require("inc/cryptoairdrop/cryptoairdrop.php");
     49        if ( 'Crypto AirDrop' == $activate_theme || 'Crypto Compare' == $activate_theme || 'Crypto Mining' == $activate_theme || 'Crypto Token' == $activate_theme || 'Meme Token' == $activate_theme ) {
     50            require 'inc/cryptoairdrop/cryptoairdrop.php';
     51        }
     52
     53        if ( 'Homerix' == $activate_theme ) {
     54            require wpfrank_companion_plugin_dir . 'inc/homerix/homerix.php';
    4955        }
    5056
Note: See TracChangeset for help on using the changeset viewer.