Skip to content
View bolante93's full-sized avatar
  • Gavilan Arts

Block or report bolante93

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. WP-SMASCSS WP-SMASCSS Public template

    A WordPress theme boilerplate

    PHP

  2. twitter-connect-plugin twitter-connect-plugin Public

    Forked from chroa/twitter-connect-plugin

    Cordova/PhoneGap plugin to use Twitter Single Sign on

    Objective-C

  3. Preload scripts in wordpress wp_head Preload scripts in wordpress wp_head
    1
    add_action('wp_head', 'preload_scripts' );
    2
    function preload_scripts() {
    3
        ?>
    4
            <link rel="preconnect" href="https://fonts.gstatic.com">
    5
            <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap" rel="stylesheet">
  4. Wordpress nav menu recursive function Wordpress nav menu recursive function
    1
    function generate_menu( $menu_items, int $parent = 0, $depth = 0 ){
    2
        ?>
    3
        <ul>
    4
            <?php
    5
                foreach ( $menu_items as $key => $item ): ?>
  5. Wordpress check if current menu item... Wordpress check if current menu item has sub menu
    1
    function has_sub_menu( array $menu_items, int $id ){
    2
        foreach ( $menu_items as $menu_item ){
    3
            if ( (int)$menu_item->menu_item_parent === $id ) {
    4
                return true;
    5
            }