-
Notifications
You must be signed in to change notification settings - Fork 4
/
qa-plugin.php
37 lines (28 loc) · 1.01 KB
/
qa-plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/*
Question2Answer (c) Gideon Greenspan
http://www.question2answer.org/
File: qa-plugin/seo-meta-tags/qa-plugin.php
Version: See define()s at top of qa-include/qa-base.php
Description: Initiates SEO Meta Tags layer plugin
*/
/*
Plugin Name: SEO Meta Tags
Plugin URI: http://qcybb.com/question2answer-seo-meta-tags/
Plugin Description: Adds "noindex,follow" meta tags to various user-defined pages.
Plugin Version: 1.0
Plugin Date: 2017-05-04
Plugin Author: Dave Hannon
Plugin Author URI: http://qcybb.com
Plugin Minimum Question2Answer Version: 1.5
Plugin Update Check URI:
*/
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../../');
exit;
}
qa_register_plugin_module('module', 'qa-seo-meta-tags-admin-form.php', 'qa_seo_meta_tags_admin_form', 'SEO Meta Tags');
qa_register_plugin_layer('qa-seo-meta-tags-layer.php', 'SEO Meta Tags');
/*
Omit PHP closing tag to help avoid accidental output
*/