This file contains hidden or 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
| <?php | |
| function my_task() { | |
| // Do something. Anything. | |
| }//end my_task() | |
| add_action( 'my_action', 'my_task' ); | |
| // Execute my_task one hour from now... | |
| wp_schedule_single_event( time() + 3600, 'my_action' ); |
This file contains hidden or 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
| <?php | |
| function my_hourly_task() { | |
| // Do something every hour. Anything. | |
| }//end my_hourly_task() | |
| add_action( 'my_hourly_event', 'my_hourly_task' ); | |
| if ( ! wp_next_scheduled ( 'my_hourly_event' ) ) { | |
| wp_schedule_event( time(), 'hourly', 'my_hourly_event' ); |
This file contains hidden or 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
| function my_login_logo() { ?> | |
| <style type="text/css"> | |
| #login h1 a, .login h1 a { | |
| background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/img/nelio-icon.png); | |
| height: 84px; | |
| width: 84px; | |
| background-size: cover; | |
| background-repeat: no-repeat; | |
| } | |
| </style> |
This file contains hidden or 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
| <?php | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; | |
| }//end if | |
| /** | |
| * Enqueue the block's assets for the editor. | |
| * | |
| * `wp-blocks`: Includes block type registration and related functions. |
This file contains hidden or 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
| ( function( blocks, components, i18n, element ) { | |
| var el = element.createElement; | |
| blocks.registerBlockType( | |
| // The name of our block. Must be a string with prefix. Example: my-plugin/my-custom-block. | |
| 'nelio/testimonial-block', { | |
| // The title of our block. | |
| title: i18n.__( 'Testimonial' ), |
This file contains hidden or 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
| edit: function( props ) { | |
| var focus = props.focus; | |
| var focusedEditable = props.focus ? props.focus.editable || 'name' : null; | |
| var alignment = props.attributes.alignment; | |
| var attributes = props.attributes; | |
| var contactURL = props.attributes.contactURL; | |
| var onSelectImage = function( media ) { | |
| return props.setAttributes( { |
This file contains hidden or 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
| save: function( props ) { | |
| var attributes = props.attributes; | |
| var alignment = props.attributes.alignment; | |
| return ( | |
| el( 'div', { className: props.className }, | |
| attributes.mediaURL && | |
| el( 'div', { className: 'nelio-testimonial-image', style: { backgroundImage: 'url('+attributes.mediaURL+')' } }, | |
| el( 'img', { src: attributes.mediaURL } ), | |
| ), | |
| el( 'div', { className: 'nelio-testimonial-content', style: { textAlign: attributes.alignment } }, |
This file contains hidden or 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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
This file contains hidden or 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
| <?php | |
| function create_post_type() { | |
| register_post_type( 'recipe', | |
| array( | |
| 'labels' => array( | |
| 'name' => __( 'Recipes', 'nelio' ), | |
| 'singular_name' => __( 'Recipe', 'nelio' ) | |
| ), | |
| 'public' => true, |