Skip to content

Instantly share code, notes, and snippets.

@snoise
Created July 1, 2014 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snoise/163d64a0bc8f78f98bd8 to your computer and use it in GitHub Desktop.
Save snoise/163d64a0bc8f78f98bd8 to your computer and use it in GitHub Desktop.
スマホ・モバイル用にテーマを別設定するプラグイン(3/3)。#WordPressプラグイン
<?php
class Paka3_theme_switch {
private $name ;
function __construct($name = null) {
$this->name = $name;
add_filter("show_admin_bar", "__return_false");
add_filter("stylesheet", array($this, "template"));
add_filter("template", array($this, "template"));
}
public function template($name) {
$template_name = $this->name ? $this->name : $name;
return $template_name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment