Skip to content
View FesoVel's full-sized avatar

Organizations

@Devvironment
Block or Report

Block or report FesoVel

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. nem-papper-wallet-generator nem-papper-wallet-generator Public

    NEM Papper Wallet Generator

    PHP 2

  2. Set proper WordPress file system per... Set proper WordPress file system permissions.
    1
    chown www-data:www-data  -R * # Let Apache be owner
    2
    find . -type d -exec chmod 755 {} \;  # Change directory permissions rwxr-xr-x
    3
    find . -type f -exec chmod 644 {} \;  # Change file permissions rw-r--r--
  3. WordPress - Remove Version Number WordPress - Remove Version Number
    1
    function remove_wp_version() {
    2
    	return '';
    3
    }
    4
    add_filter('the_generator', 'remove_wp_version');
  4. WordPress - Remove Query Strings WordPress - Remove Query Strings
    1
    function remove_query_strings( $src ){ 
    2
    	$parts = explode( '?', $src ); 	
    3
    	return $parts[0]; 
    4
    } 
    5
    add_filter( 'script_loader_src', 'remove_query_strings', 15, 1 ); 
  5. How to add html code to WordPress <h... How to add html code to WordPress <head> using wp_head hook.
    1
    function insert_html_in_header() {
    2
        echo '<<< html here >>>';
    3
    }
    4
    /* Admin Dashboard */
    5
    add_action( 'admin_head', 'insert_html_in_header' );
  6. gdarko/wp-mkd-air-quality gdarko/wp-mkd-air-quality Public

    Macedonia Air Quality charts and map for WordPress

    JavaScript 2