forked from argoproject/Argo
-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
going through some of the php files to work on function reference
- Loading branch information
Showing
7 changed files
with
57 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
feed-mailchimp.php | ||
================== | ||
|
||
.. php:attr:: $numposts | ||
.. php:function:: rss_date() | ||
Template Name: MailChimp Feed | ||
A feed with thumbnail images for MailChimp import | ||
Feed address to use for MailChimp import will be http://myurl.com/?feed=mailchimp | ||
A template tag for printing the date in a format suitable for an RSS feed | ||
|
||
:package: Largo | ||
:since: 0.2 | ||
:param mixed $timestamp: (optional) the unix timestamp for which to print the formatted date |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
<?php | ||
|
||
/** | ||
* This file acts as a wrapper around APIs that exist within Largo. | ||
* It should be included in any Largo child themes like so: | ||
* require_once( get_template_directory() . '/largo-apis.php' ); | ||
* | ||
* @package Largo | ||
*/ | ||
|
||
/** | ||
* @ignore | ||
*/ | ||
$includes = array( | ||
'/inc/metabox-api.php', // library-esque convenience functions for hooking into Largo meta boxen | ||
'/inc/metabox-api.php', // library-esque convenience functions for hooking into Largo meta boxen | ||
); | ||
|
||
// Perform load | ||
foreach ( $includes as $include ) { | ||
include_once( get_template_directory() . $include ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters