mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-08-30 13:43:54 +08:00
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: WP Static HTML Output
|
|
Plugin URI: https://leonstafford.github.io
|
|
Description: Benefit from WordPress as a CMS but with the speed, performance and portability of a static site
|
|
Version: 1.1.3
|
|
Author: Leon Stafford
|
|
Author URI: https://leonstafford.github.io
|
|
Text Domain: static-html-output-plugin
|
|
|
|
Copyright (c) 2011 Leon Stafford
|
|
*/
|
|
|
|
require_once 'library/StaticHtmlOutput/Exception.php';
|
|
require_once 'library/StaticHtmlOutput/Options.php';
|
|
require_once 'library/StaticHtmlOutput/View.php';
|
|
require_once 'library/StaticHtmlOutput/UrlRequest.php';
|
|
require_once 'library/StaticHtmlOutput.php';
|
|
|
|
StaticHtmlOutput::init(__FILE__);
|
|
|
|
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'pluginActionLinks');
|
|
|
|
/**
|
|
* Adds link to options page from Plugins list
|
|
* @return array
|
|
*/
|
|
function pluginActionLinks($links)
|
|
{
|
|
$settings_link = '<a href="tools.php?page=wp-static-html-output-options">' . __('Settings', 'static-html-output-plugin') . '</a>';
|
|
array_unshift( $links, $settings_link );
|
|
return $links;
|
|
}
|
|
|
|
/**
|
|
* Initializes localization
|
|
* @return void
|
|
*/
|
|
|
|
function myplugin_init() {
|
|
|
|
load_plugin_textdomain( 'static-html-output-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
|
}
|
|
add_action('plugins_loaded', 'myplugin_init');
|
|
|
|
add_action( 'wp_ajax_generate_archive', 'generate_archive' );
|
|
|
|
function generate_archive() {
|
|
|
|
$plugin = StaticHtmlOutput::getInstance();
|
|
|
|
$plugin->genArch();
|
|
|
|
wp_die();
|
|
}
|