refactor: rename namespace SoloFrameEvo to KsPortfolio

This commit is contained in:
Keith Solomon
2026-08-16 13:06:38 -05:00
parent 664e227f15
commit 9005aeed1a
13 changed files with 22 additions and 16 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
$footerLogo = getFieldValue( 'footer.footer_logo.url' ) ? getFieldValue( 'footer.footer_logo.url' ) : ''; $footerLogo = getFieldValue( 'footer.footer_logo.url' ) ? getFieldValue( 'footer.footer_logo.url' ) : '';
$footerDesc = getFieldValue( 'footer.footer_description' ) ? getFieldValue( 'footer.footer_description' ) : ''; $footerDesc = getFieldValue( 'footer.footer_description' ) ? getFieldValue( 'footer.footer_description' ) : '';
+7 -1
View File
@@ -9,13 +9,19 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
// Load functions. // Load functions.
foreach ( glob( __DIR__ . '/lib/*.php' ) as $filename ) { foreach ( glob( __DIR__ . '/lib/*.php' ) as $filename ) {
include_once $filename; include_once $filename;
} }
// Project helper (thin wrapper around the projects-portfolio plugin).
$projects_helper = __DIR__ . '/lib/class-projects.php';
if ( file_exists( $projects_helper ) ) {
require_once $projects_helper;
}
/** Registers custom ACF (Advanced Custom Fields) blocks for use in the WordPress theme. /** Registers custom ACF (Advanced Custom Fields) blocks for use in the WordPress theme.
* *
* This function is intended to define and register custom Gutenberg blocks * This function is intended to define and register custom Gutenberg blocks
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
global $views; global $views;
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class ACF * Class ACF
+1 -1
View File
@@ -1,5 +1,5 @@
<?php <?php
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class Breadcrumbs * Class Breadcrumbs
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class Enqueue * Class Enqueue
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class MenuItems * Class MenuItems
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class Resources * Class Resources
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** Get child pages of the current page, sorted by menu order. /** Get child pages of the current page, sorted by menu order.
* *
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
// Define global variables for theme and views folder paths. // Define global variables for theme and views folder paths.
global $theme, $views; global $theme, $views;
+4 -4
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Add preconnect for Google fonts to head * Add preconnect for Google fonts to head
@@ -189,7 +189,7 @@ function init() {
add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'customize-selective-refresh-widgets' );
} }
add_action( 'init', __NAMESPACE__ . '\\init', 1 ); add_action( 'init', '\\KsPortfolio\\init', 1 );
/** /**
* Allow SVG uploads * Allow SVG uploads
@@ -268,5 +268,5 @@ function new_mail_from_name( $old ) {
return get_option( 'blogname' ); return get_option( 'blogname' );
} }
add_filter( 'wp_mail_from', __NAMESPACE__ . '\\new_mail_from' ); add_filter( 'wp_mail_from', '\\KsPortfolio\\new_mail_from' );
add_filter( 'wp_mail_from_name', __NAMESPACE__ . '\\new_mail_from_name' ); add_filter( 'wp_mail_from_name', '\\KsPortfolio\\new_mail_from_name' );
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Modifies the WordPress query object for page search functionality. * Modifies the WordPress query object for page search functionality.
+1 -1
View File
@@ -6,7 +6,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace SoloFrameEvo; namespace KsPortfolio;
/** /**
* Class ShowTemplate * Class ShowTemplate