- http://i.cmaas.net/pc/Linux/Wine/1368700507 (ja)
- https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/939301
- https://forums.ubuntulinux.jp/viewtopic.php?id=13910 (ja)
- OS: Knoppix 7.0.3 LCR
- DE: LXDE
| //https://chiefthemes.com/create-wordpress-recent-posts-shortcode/ | |
| <?php | |
| function chiefthemes_posts_shortcode($atts, $content = NULL) | |
| { | |
| $atts = shortcode_atts( | |
| [ | |
| 'orderby' => 'date', |
| <?php | |
| add_filter('woocommerce_product_single_add_to_cart_text', 'rental_single_product_add_to_cart',10,2); | |
| add_filter('woocommerce_product_add_to_cart_text', 'rental_single_product_add_to_cart',10,2); | |
| function rental_single_product_add_to_cart( $title,$product ) { | |
| return 'Ajánlatkérés'; | |
| } | |
| add_action('woocommerce_widget_shopping_cart_before_buttons', 'rental_before_mini_cart_checkout',10); | |
| function rental_before_mini_cart_checkout(){ |
| if ( ! function_exists( 'woocommerce_demo_store' ) ) { | |
| /** | |
| * Adds a demo store banner to the site if enabled | |
| * | |
| * @access public | |
| * @return void | |
| */ | |
| function woocommerce_demo_store() { | |
| if ( get_option( 'woocommerce_demo_store' ) == 'no' ) |
| mogrify -resize 1500x1500 -format jpg -path ../ESG_small *.jpg |
| <?php | |
| header('Content-Type: application/json'); | |
| //$xmlfile = 'xml/EIT_00002_20140507.xml'; | |
| function xml2json($file) { | |
| if (file_exists($file)) { | |
| $xml = simplexml_load_file($file); | |
| $date = $xml->EventDate; |
| <div class="carousel-inner" style="float: none; margin: 0 auto;"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> | |
| <ol class="carousel-indicators"> | |
| <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> | |
| <li data-target="#carousel-example-generic" data-slide-to="1"></li> | |
| <li data-target="#carousel-example-generic" data-slide-to="2"></li> | |
| </ol> | |
| <div class="carousel-inner"> |
| #!/bin/bash | |
| # | |
| # Backup and update WordPress using wp-cli | |
| # | |
| # Set the -e shell option so the script exits immediately if any command within | |
| # it exits with a non-zero status. | |
| set -e | |
| # Set PATH environment variable |