Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Sites: Add a "Day of Event" page to new sites #241

Merged
merged 5 commits into from
Jan 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions public_html/wp-content/plugins/wcpt/stubs/page/day-of-event.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!-- wp:paragraph -->
<p><?php echo esc_html( get_wordcamp_date_range( $wordcamp ) ); ?><br>
<?php echo nl2br( esc_html( get_wordcamp_location( $wordcamp ) ) ); ?></p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2><?php esc_html_e( 'Schedule', 'wordcamporg' ); ?></h2>
<!-- /wp:heading -->

<!-- wp:wordcamp/live-schedule {"level":3} -->
<div data-now="<?php esc_html_e( 'On Now', 'wordcamporg' ); ?>" data-next="<?php esc_html_e( 'Next Up', 'wordcamporg' ); ?>" data-level="3" class="wp-block-wordcamp-live-schedule"></div>
<!-- /wp:wordcamp/live-schedule -->

<!-- wp:heading -->
<h2><?php esc_html_e( 'Latest Posts', 'wordcamporg' ); ?></h2>
<!-- /wp:heading -->

<!-- wp:latest-posts {"displayPostDate":true,"liveUpdateEnabled":true} /-->
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function render_site_url_field( $key, $field_type, $object_name ) {
Create site in network
</label>

<span class="description">(e.g., https://<?php echo esc_attr( date( 'Y' ) ); ?>.city.wordcamp.org)</span>
<span class="description">(e.g., https://<?php echo esc_attr( wp_date( 'Y' ) ); ?>.city.wordcamp.org)</span>
<?php endif; // Domain exists. ?>
<?php endif; // User can manage sites. ?>
<?php endif;
Expand Down Expand Up @@ -179,7 +179,7 @@ public function maybe_create_new_site( $wordcamp_id ) {

$blog_name = apply_filters( 'the_title', $wordcamp->post_title );
if ( ! empty( $wordcamp->{'Start Date (YYYY-mm-dd)'} ) ) {
$blog_name .= date( ' Y', $wordcamp->{'Start Date (YYYY-mm-dd)'} );
$blog_name .= wp_date( ' Y', $wordcamp->{'Start Date (YYYY-mm-dd)'} );
}

$this->new_site_id = wp_insert_site( array(
Expand Down Expand Up @@ -615,6 +615,16 @@ protected function get_stub_pages( $wordcamp, $meta ) {
'wc_page_offline' => 'yes',
),
),

array(
'title' => __( 'Day Of Event', 'wordcamporg' ),
'content' => $this->get_stub_content( 'page', 'day-of-event', $wordcamp ),
'status' => 'draft',
'type' => 'page',
'meta' => array(
'_wp_page_template' => 'day-of-event', // Set the page template.
),
),
);

return $pages;
Expand Down