wp-73k/functions.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2019-05-23 12:30:31 -04:00
<?php
/**
* Kickoff theme setup and build
*/
namespace WP_73k;
2019-05-23 12:30:31 -04:00
define( 'WP_73k_VERSION', wp_get_theme()->version );
define( 'WP_73k_DIR', __DIR__ );
define( 'WP_73k_URL', get_template_directory_uri() );
2019-05-23 12:30:31 -04:00
2021-07-04 18:16:33 -04:00
/**
* Function to support inline SVG icons by name with div wrapper
*/
2021-07-04 09:26:44 -04:00
function svg_icon_use($icon_name, $div_class) {
2021-07-04 18:16:33 -04:00
$output = "<div class=\"$div_class $icon_name\"><svg class=\"$icon_name\" aria-hidden=\"true\">";
$output .= "<use xlink:href=\"" . get_stylesheet_directory_uri() . "/dist/images/icon-sprites.svg#$icon_name\"></use>";
2021-07-04 18:16:33 -04:00
return $output . "</svg></div>";
2021-07-04 09:26:44 -04:00
};
2021-07-06 14:57:45 -04:00
/**
* Social helpers
*/
require_once( WP_73k_DIR . '/socials.php' );
function socials_str($socials) {
$out_str = '<div id="social-icons" class="mt-1">';
foreach ($socials as $i=>$social) {
$pad = $i == 0 ? 'pe-1' : ($i == (count($socials) - 1) ? 'ps-1' : 'px-1');
$out_str .= '<a href="' . $social['url'] . '" rel="noreferrer" target="' . $social['target'];
$out_str .= '" class="fs-3 link-light text-decoration-none ' . $pad . '">';
$out_str .= svg_icon_use($social['icon'], "icon baseline") . "</a>";
}
return $out_str . '</div>';
}
2021-07-04 18:16:33 -04:00
/**
* Autoloader for browersync
*/
require_once( WP_73k_DIR . '/vendor/autoload.php' );
2019-10-24 23:06:18 -04:00
\A7\autoload( __DIR__ . '/src' );