-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
stiofan
committed
Mar 19, 2018
1 parent
2627fd0
commit 6184f30
Showing
2 changed files
with
26 additions
and
3 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,17 @@ | ||
<?php | ||
/** | ||
* Admin View: Notice - Beta notice | ||
*/ | ||
|
||
if ( ! defined( 'ABSPATH' ) ) { | ||
exit; | ||
} | ||
|
||
?> | ||
<div id="message" class="notice-warning notice notice-alt geodir-message"> | ||
<p><?php _e("This GeoDirectory core beta is a very early release and is not recommended from a production site.") ?></p> | ||
<p><?php _e("GeoDirectory addons are not supported yet, this is a core beta, addons will be supported once core is out of beta.") ?></p> | ||
<p class="submit"> | ||
<a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'gd-hide-notice', 'beta' ), 'geodir_hide_notices_nonce', '_gd_notice_nonce' ) ); ?>" class="button-secondary"><?php _e( 'Dismiss', 'geodirectory' ); ?></a> | ||
</p> | ||
</div> |