Last active
May 2, 2019 06:07
-
-
Save Alicannklc/08a56464dcda7a55df668eaaa4593e05 to your computer and use it in GitHub Desktop.
Wordpress modern tema düzeni
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Add theme class | |
// functions.php | |
*/ | |
<?php | |
require get_template_directory() . '/include.php'; | |
$tema = new Temaclass; | |
$tema->addNavMenus([ | |
'menu-1' => 'Primary', | |
]); | |
$tema->addSupport('post-thumbnails'); | |
$tema->addImageSize('full-width', 1600); | |
$tema->addStyle('tema-styles', get_stylesheet_uri()) | |
->addScript('tema-script', get_template_directory_uri() . '/js/custom.js'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Temaclass | |
{ | |
private function actionAfterSetup($function) | |
{ | |
add_action('after_setup_theme', function() use ($function) { | |
$function(); | |
}); | |
} | |
private function actionEnqueueScripts($function) | |
{ | |
add_action('wp_enqueue_scripts', function() use ($function){ | |
$function(); | |
}); | |
} | |
public function __construct() | |
{ | |
$this->addSupport('title-tag') | |
->addSupport('custom-logo') | |
->addSupport('post-thumbnails') | |
->addSupport('customize-selective-refresh-widgets') | |
->addSupport('html5', [ | |
'search-form', | |
'comment-form', | |
'comment-list', | |
'gallery', | |
'caption' | |
]) | |
} | |
public function addSupport($feature, $options = null) | |
{ | |
$this->actionAfterSetup(function() use ($feature, $options) { | |
if ($options){ | |
add_theme_support($feature, $options); | |
} else { | |
add_theme_support($feature); | |
} | |
}); | |
return $this; | |
} | |
public function removeSupport($feature) | |
{ | |
$this->actionAfterSetup(function() use ($feature){ | |
remove_theme_support($feature); | |
}); | |
return $this; | |
} | |
public function loadTextDomain($domain, $path = false) | |
{ | |
$this->actionAfterSetup(function() use ($domain, $path){ | |
load_theme_textdomain($domain, $path); | |
}); | |
return $this; | |
} | |
public function addImageSize($name, $width = 0, $height = 0, $crop = false) | |
{ | |
$this->actionAfterSetup(function() use ($name, $width, $height, $crop){ | |
add_image_size($name, $width, $height, $crop); | |
}); | |
return $this; | |
} | |
public function removeImageSize($name) | |
{ | |
$this->actionAfterSetup(function() use ($name){ | |
remove_image_size($name); | |
}); | |
return $this; | |
} | |
public function addStyle($handle, $src = '', $deps = array(), $ver = false, $media = 'all') | |
{ | |
$this->actionEnqueueScripts(function() use ($handle, $src, $deps, $ver, $media){ | |
wp_enqueue_style($handle, $src, $deps, $ver, $media); | |
}); | |
return $this; | |
} | |
public function addScript($handle, $src = '', $deps = array(), $ver = false, $in_footer = false) | |
{ | |
$this->actionEnqueueScripts(function() use ($handle, $src, $deps, $ver, $in_footer){ | |
wp_enqueue_script($handle, $src, $deps, $ver, $in_footer); | |
}); | |
return $this; | |
} | |
public function addCommentScript() | |
{ | |
$this->actionEnqueueScripts(function(){ | |
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { | |
wp_enqueue_script( 'comment-reply' ); | |
} | |
}); | |
return $this; | |
} | |
public function removeStyle($handle) | |
{ | |
$this->actionEnqueueScripts(function() use ($handle){ | |
wp_dequeue_style($handle); | |
wp_deregister_style($handle); | |
}); | |
return $this; | |
} | |
public function removeScript($handle) | |
{ | |
$this->actionEnqueueScripts(function() use ($handle){ | |
wp_dequeue_script($handle); | |
wp_deregister_script($handle); | |
}); | |
return $this; | |
} | |
public function addNavMenus($locations = array()) | |
{ | |
$this->actionAfterSetup(function() use ($locations){ | |
register_nav_menus($locations); | |
}); | |
return $this; | |
} | |
public function addNavMenu($location, $description) | |
{ | |
$this->actionAfterSetup(function() use ($location, $description){ | |
register_nav_menu($location, $description); | |
}); | |
return $this; | |
} | |
public function removeNavMenu($location){ | |
$this->actionAfterSetup(function() use ($location){ | |
unregister_nav_menu($location); | |
}); | |
return $this; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment