Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcernis committed Jun 13, 2017
0 parents commit 30cdf63
Show file tree
Hide file tree
Showing 5 changed files with 818 additions and 0 deletions.
38 changes: 38 additions & 0 deletions config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php
/**
* Custom icons you would like to add.
*
* Each icon array must have these values:
*
* label: The label for front end HTML. Used by screen readers and search engines.
* widget_label: The label that appears above the admin widget field.
* short_name: Used in icon attributes.
* path: The path to your icon file. # denotes the ID.
* default: The default text in the widget field. Usually blank.
*
* @package SSICustom
*/

return [
[
'label' => __( 'Spotify', 'ssi-custom-icons' ),
'widget_label' => __( 'Spotify URI', 'ssi-custom-icons' ),
'short_name' => 'spotify',
'path' => esc_url( plugin_dir_url( __FILE__ ) . 'icons/custom.svg#social-spotify' ),
'default' => '',
],
[
'label' => __( 'Etsy', 'ssi-custom-icons' ),
'widget_label' => __( 'Etsy URI', 'ssi-custom-icons' ),
'short_name' => 'etsy',
'path' => esc_url( plugin_dir_url( __FILE__ ) . 'icons/custom.svg#social-etsy' ),
'default' => '',
],
[
'label' => __( 'Codepen', 'ssi-custom-icons' ),
'widget_label' => __( 'Codepen URI', 'ssi-custom-icons' ),
'short_name' => 'codepen',
'path' => esc_url( plugin_dir_url( __FILE__ ) . 'icons/custom.svg#social-codepen' ),
'default' => '',
],
];
16 changes: 16 additions & 0 deletions icons/custom.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 30cdf63

Please sign in to comment.