-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add the preview iframe fix * Add the wp-activate handles Co-authored-by: Christopher Kanitz <ckanitz@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
86 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* The footer for the multisite user activation page. | ||
* | ||
* This is the template that displays all of the <footer> section. This file exists to | ||
* be as barebones as possible, because during multisite user activation, the theme | ||
* is loaded without any plugins. This means that the theme cannot use any functions | ||
* from plugins. | ||
* | ||
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials | ||
* | ||
* @package lhpbpt | ||
*/ | ||
|
||
namespace WpMunich\lhpbpt; | ||
|
||
wp_footer(); ?> | ||
|
||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
/** | ||
* The header for the multisite user activation page. | ||
* | ||
* This is the template that displays all of the <head> section. This file exists to | ||
* be as barebones as possible, because during multisite user activation, the theme | ||
* is loaded without any plugins. This means that the theme cannot use any functions | ||
* from plugins. | ||
* | ||
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials | ||
* | ||
* @package lhpbpt | ||
*/ | ||
|
||
namespace WpMunich\lhpbpt; | ||
|
||
?> | ||
<!doctype html> | ||
<html <?php language_attributes(); ?>> | ||
<head> | ||
<meta charset="<?php bloginfo( 'charset' ); ?>"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<?php wp_head(); ?> | ||
</head> | ||
|
||
<body <?php body_class(); ?>> |
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