Skip to content
View beflash's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report beflash

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. back-to-top.php (functions/rss-feed.... back-to-top.php (functions/rss-feed.php)
    1
    <?php
    2
       add_action( 'wp_footer', function () {  if ( !is_admin() ) {
    3
    
                  
    4
    $location = 'right'; // left or right
    5
    $scale = '1';	
  2. transition.php (functions/transition... transition.php (functions/transition.php)
    1
    <?php
    2
    
                  
    3
    /** 
    4
    * WordPress page transition by WPCookie
    5
    * VISIT https://redpishi.com/wordpress-tutorials/page-transition-wordpress/ for more Information!
  3. maintenance.php (functions/maintenan... maintenance.php (functions/maintenance.php)
    1
    <?php
    2
    
                  
    3
    add_action('init', function() {
    4
    if (  !is_admin() && !current_user_can( 'manage_options') && $GLOBALS['pagenow'] !== 'wp-login.php'  )  { 
    5
    
                  
  4. login.php (functions/login.php) login.php (functions/login.php)
    1
    <?php
    2
    // Redpishi.com WordPress login page Photography Template
    3
    
                  
    4
    add_filter( 'the_content', 'redpihi_custom_login' );
    5
    function redpihi_custom_login( $content ) {
  5. darkmode-backend.php (functions/dark... darkmode-backend.php (functions/darkmode-backend.php)
    1
    <?php
    2
        function applyCustomStyles() {
    3
        echo '
    4
        <style>
    5
  6. duplicate.php (functions/duplicate.php) duplicate.php (functions/duplicate.php)
    1
    <?php
    2
    add_filter( 'post_row_actions', 'rd_duplicate_post_link', 10, 2 );
    3
    add_filter( 'page_row_actions', 'rd_duplicate_post_link', 10, 2 );
    4
    function rd_duplicate_post_link( $actions, $post ) {
    5