mirror of
https://github.com/10h30/full-screen-morphing-search.git
synced 2026-06-05 15:08:32 +09:00
cb72115898
Updated readme file.
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?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';
|