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_filter('post_type_link', 'my_custom_public_link',10,2); | |
function my_custom_public_link($permalink) { | |
// 現在の投稿タイプを取得 | |
$post_type = get_post_type(); | |
// 書き換えたい投稿タイプを指定 | |
if ( $post_type == 'recruit' ){ | |
$permalink = '表示したいページのURL'; | |
} |
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
$ svn commit -m "2.3.3" | |
$ cd ../ | |
$ svn cp trunk tags/2.3.3" | |
$ svn ci -m "tagging version 2.3.3" |
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
Feature: BillVektor Features | |
# 使用できるテストの文書のパターンを見たい場合は以下のコマンド | |
# vendor/bin/behat -di --lang=en | |
Scenario: Login as the "administrator" role | |
# スクリーンサイズ1200×800 | |
Given the screen size is 1200x800 |
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 | |
if ( ! class_exists( 'RecommendPost' ) ) { | |
class RecommendPost { | |
static function init(){ | |
add_action( 'admin_menu', array( __CLASS__, 'add_meta_box') ); | |
add_action('save_post', array( __CLASS__, 'save_meta_data') ); | |
add_action('pre_get_posts', array( __CLASS__, 'change_order') ); | |
} |
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 | |
add_filter('vk_post_list_widget_li_items', 'veu_new_post_widget_term_color'); | |
function veu_new_post_widget_term_color($li_items_output){ | |
$taxonomies = get_the_taxonomies(); | |
if ($taxonomies): | |
// get $taxonomy name | |
$taxonomy = key( $taxonomies ); | |
$terms = get_the_terms( get_the_ID(),$taxonomy ); | |
$term_html = ''; | |
foreach ($terms as $key => $term) { |
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
$ ssh [email protected] |
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
<div class="moreLink right sectionBox"> | |
<a href="リンク先URL">ボタン名</a> | |
</div> |
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
<!-- [ header.phpなどに記入 ] --> | |
<ul class="lang_list"> | |
<li id="lg_bt_en"><a href="#">ENGLISH</a></li> | |
<li id="lg_bt_ja"><a href="#">JAPAN</a></li> | |
</ul> | |
<?php | |
/* | |
functons.phpなどに記入 |
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 | |
/* | |
* Template Name: 採用情報 | |
*/ | |
get_header(); ?> | |
<!-- [ #container ] --> | |
<div id="container" class="innerBox"> | |
<!-- [ #content ] --> | |
<div id="content" class="content"> |