芝麻web文件管理V1.00
编辑当前文件:/home/r5772835/public_html/blog.ycreate.jp/wp-content/themes/swell/classes/Customizer/Partial.php
selective_refresh->add_partialのコールバックを集めたクラス */ class Partial { private function __construct() {} /** * ヘッダーロゴ */ public static function head_logo() { $logo = \SWELL_PARTS::head_logo(); return $logo; } /** * 記事スライダー */ public static function post_slider() { if ('on' !== \SWELL_Theme::get_setting( 'show_post_slide' ) ) return ''; ob_start(); \SWELL_Theme::get_parts( 'parts/top/post_slider' ); return ob_get_clean(); } /** * パンくず */ public static function breadcrumb() { ob_start(); \SWELL_Theme::get_parts( 'parts/breadcrumb' ); return ob_get_clean(); } }