Compare commits

...

2 Commits

Author SHA1 Message Date
jorge e5a6fb449e changed textdomain in plugin, removed outdated code 2022-07-22 14:16:55 +02:00
jorge dbe7889c50 added help page 2022-07-19 15:23:07 +02:00
2 changed files with 21 additions and 7 deletions

14
assets/help/index.html Normal file
View File

@ -0,0 +1,14 @@
<html>
<head>
<title> help for wp plugin</title>
</head>
<body>
<head>
<h1>help Hangar WP plugin</h1>
</head>
<main>
<p> Help will be provided here</p>
</main>
</body>
</html>

View File

@ -15,7 +15,7 @@
* Author URI: https://vitrubio.net/ * Author URI: https://vitrubio.net/
* License: GPL 3.0 * License: GPL 3.0
* License URI: https://www.gnu.org/licenses/gpl-3.0.html * License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: hangar-plugin * Text Domain: hangar-wpplugin
* Domain Path: /languages * Domain Path: /languages
*/ */
@ -50,14 +50,14 @@ include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-init-textdomain.php');
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-enable-svg.php'); include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-enable-svg.php');
if ( is_admin() ) {
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-stylesheet-admin.php'); include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-stylesheet-admin.php');
} else {
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-stylesheet-public.php'); include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-stylesheet-public.php');
}
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-custom-post-type-resources.php'); include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-custom-post-type-resources.php');
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-tags-and-pages.php'); include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-tags-and-pages.php');
//include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-tags-category-shortcode.php'); //include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-tags-category-shortcode.php'); // outdated from 2012 do not use
include( HANGAR_WPPLUGIN_PATH . 'includes/hangar-plugin-settings-pannel.php');