This file contains hidden or 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
| # Step 3. | |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # don't put duplicate lines in the history. See bash(1) for more options |
This file contains hidden or 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 | |
| /** | |
| * @see: https://github.com/bueltge/Wordpress-Theme-Customizer-Custom-Controls | |
| */ | |
| add_action( 'customize_register', 'fb_customize_register' ); | |
| function fb_customize_register( $wp_customize ) { | |
| require_once( 'class-user_select_custom_control.php' ); | |
| $wp_customize->add_section( |
This file contains hidden or 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 | |
| /** | |
| * @see: https://github.com/bueltge/Wordpress-Theme-Customizer-Custom-Controls | |
| */ | |
| add_action( 'customize_register', 'fb_customize_register' ); | |
| function fb_customize_register( $wp_customize ) { | |
| require_once( 'class-taxonomy_dropdown_custom_control.php' ); | |
| $wp_customize->add_section( |
This file contains hidden or 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
| // path/to/theme/tinymce/en.js | |
| // plugin.jsと同じディレクトリに設置 | |
| tinyMCE.addI18n("en.test_plugin",{ | |
| test_listbox : "Test listbox", | |
| test_button : "Test button", | |
| }); |
This file contains hidden or 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: Adsense after more-Tag | |
| * Description: Add content of var $extra_more after more-Tag | |
| * Version: 0.0.1 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de/ | |
| */ | |
| ! defined( 'ABSPATH' ) and exit; |
This file contains hidden or 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: iFrame for TinyMCE | |
| * Description: Allow iframe in the visual Editor | |
| * Version: 0.0.1 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de/ | |
| */ | |
| ! defined( 'ABSPATH' ) and exit; |
This file contains hidden or 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: Deactivate oEmbed | |
| * Description: Deactivate oEmbed in WordPress 3.5 and earlier | |
| * Version: 0.0.1 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de/ | |
| */ | |
| remove_filter( 'the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 ); |
This file contains hidden or 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
| $main-font-size: 16px; | |
| @mixin x-rem ($property, $value) { | |
| #{$property}: $value * $main-font-size; | |
| #{$property}: #{$value}rem; | |
| } | |
| .some-class { | |
| @include x-rem(font-size, 1.4); |
This file contains hidden or 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: Keep me Logged In for 1 Year | |
| * Plugin URI: https://bueltge.de/wordpress-login-unterbinden/1220/ | |
| * Description: Set the time that the cookie will be kept at 1 year. | |
| * Version: 0.0.3 | |
| * Author: Frank Bültge | |
| * Author URI: https://bueltge.de/ | |
| */ |
This file contains hidden or 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: Attachment Taxonomies | |
| * Plugin URI: attachment_taxonomies | |
| * Text Domain: addquicktag | |
| * Domain Path: /languages | |
| * Description: | |
| * Version: 1.0.0 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de |