Skip to content
View dnavarrojr's full-sized avatar
Block or Report

Block or report dnavarrojr

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. acf-dave acf-dave Public

    Advanced Custom Fields Extentions (ACF for WordPress)

    PHP 1 1

  2. ACF Form Shortcode Plugin for the Fr... ACF Form Shortcode Plugin for the Front End
    1
    <?php
    2
    /*
    3
    Plugin Name: ACF Front End Forms
    4
    Plugin URI: https://navarrojr.com
    5
    Description: Create forms on the front end of the site from ACF field groups. 
  3. CSV-Data-Sets CSV-Data-Sets Public

    CSV File Data Sets

  4. weather weather Public

    PHP Weather Related Code and Data

  5. Recurring Weekly Array Recurring Weekly Array
    1
    function tscpl_recurring_weekly( $start_date, $dow, $count ) {
    2
    
    
    3
        $days = array(
    4
            'sunday' => 0,
    5
            'monday' => 1,
  6. Generate recurring monthly dates Generate recurring monthly dates
    1
    // returns an array with the dates for a recurring monthly rule
    2
    
    
    3
    $dates = tscpl_recurring_monthly( $start_date, $end_date, 'fourth', 'tuesday );
    4
    
    
    5
    function tscpl_recurring_weekly( $start_date, $end_date = null, $dow ) {