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 | |
/* | |
Plugin Name: tinyChangeAuthor | |
Plugin URI: https://gist.github.com/ideag/5174195/ | |
Description: Change post author on save | |
Author: @IdeaG (tinyStudio) | |
Version: 0.1 | |
Author URI: http://wp.tribuna.lt | |
*/ |
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 | |
$slider_show = get_option('general_enable_slider'); | |
$slider_auto = get_option('general_auto_play'); | |
$slider_speed = get_option('general_slider_delay'); | |
$slider_animation_time = get_option('general_animation_time'); | |
if(empty($slider_speed)) {$slider_speed = "4000";} | |
if(empty($slider_animation_time)) {$slider_animation_time = "1000";} | |
if($slider_show[0] == 'yes') : | |
// if($slider_show[0] == 'yes') { | |
?> |
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 | |
/* | |
Plugin Name: JSFiddle oEmbed | |
Plugin URI: http://klausk.aruno.lt/jsfiddle/ | |
Description: Embed JSFiddle into posts | |
Version: 1.0 | |
Author: IdeaG | |
Author URI: http://klausk.aruno.lt | |
License: GPL2 |
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 | |
function themename_customize_register($wp_customize){ | |
$wp_customize->add_section('themename_color_scheme', array( | |
'title' => __('Color Scheme', 'themename'), | |
'priority' => 120, | |
)); | |
// ============================= |
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 | |
/** | |
* Lietuviškų vardų linksniai. | |
* | |
* @author Maug Lee <[email protected]> | |
* @copyright Copyleft (ↄ) 2011, Maug Lee | |
* @version 0.3 | |
* @package Vardai | |
*/ |