-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfull-screen-morphing-search.php
More file actions
34 lines (33 loc) · 1.33 KB
/
Copy pathfull-screen-morphing-search.php
File metadata and controls
34 lines (33 loc) · 1.33 KB
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
<?php
/**
* Plugin Name: Full Screen Morphing Search
* Plugin URI: http://tympanus.net/codrops/2014/11/04/simple-morphing-search/
* Version: 3.5
* Author: LebCit
* Author URI: https://lebcit.tk/
* Text Domain: full-screen-morphing-search
* License: GPL-2.0-or-later
* License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
* Description: Effect for any WordPress search input that morphs into a fullscreen overlay.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package WordPress
*/
/**
* Required files for this plugin.
*/
require_once dirname( __FILE__ ) . '/class-full-screen-morphing-search.php';
require_once dirname( __FILE__ ) . '/functions-full-screen-morphing-search.php';