これまでは、
<?php the_field('field_name'); ?>
これからは
<?php echo get_field('field_name'); ?>
WordPress 2024.3.19
これまでは、
<?php the_field('field_name'); ?>
これからは
<?php echo get_field('field_name'); ?>
WordPress 2024.3.5
functions.phpに以下を追加する
add_filter( 'wp_kses_allowed_html', 'acf_add_allowed_iframe_tag', 10, 2 );
function acf_add_allowed_iframe_tag( $tags, $context ) {
if ( $context === 'acf' ) {
$tags['iframe'] = array(
'src' => true,
'height' => true,
'width' => true,
'frameborder' => true,
'allowfullscreen' => true,
);
}
return $tags;
}
<?php
$acfgroup = get_field('group');
$value = array_filter($acfgroup);
if ($value) :
endif;
?>
WordPress 2023.11.6
<?php wp_head(); ?> 下に入れる
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
WordPress 2023.10.3
thanksページを作りたくないのでパラメータを付ける
functions.php
function my_mwform_after_send( $Data ) {
if ( $Data->get_form_key() === 'mw-wp-form-xxx' ) {
$id = $Data->get( 'id' ); $url = get_permalink($id);
wp_redirect($url.'?q=thanks');
exit;
}
}
add_action( 'mwform_after_send_mw-wp-form-xxx', 'my_mwform_after_send' );
WordPress 2023.5.23
functions.php
/* ===============================================
# timthumb
=============================================== */
define('THEME_DIR', get_template_directory_uri());
/* Timthumb CropCropimg */
function thumbCrop($img='', $w=false, $h=false , $zc=1, $a=false, $cc=false ){
if($h)
$h = "&h=$h";
else
$h = "";
if($w)
$w = "&w=$w";
else
$w = "";
if($a)
$a = "&a=$a";
else
$a = "";
if($cc)
$cc = "&cc=$cc";
else
$cc = "";
$img = str_replace(get_bloginfo('url'), '', $img);
$image_url = str_replace("http://","http://",THEME_DIR) . "/timthumb/timthumb.php?src=" . $img . $h . $w. "&zc=".$zc .$a .$cc;
return $image_url;
}
HTML
<?php
$image = get_field('image');
$size = 'large'; // (thumbnail, medium, large, full or custom size)
if ($image) {
$image_url1 = wp_get_attachment_image_url($image, $size);
$image_url2 = get_template_directory_uri() . "/timthumb/timthumb.php?src=" . $image_url1 . '&h=564' . '&w=752';
?>
<img src="<?php echo $image_url2; ?>">
<?php
} else {
?>
<img src="https://placehold.jp/eeeeee/ffffff/752x564.png?text=No%20photo" alt="">
<?php
}
?>
WordPress 2023.5.15
タイムゾーンで東京を選択するとうまくいかないことがありました。
UTF+9に変更したらうまくいきました。
<script>
jQuery(function($) {
if ($('.error')[0] || $('.mw_wp_form_confirm')[0] || $('.mw_wp_form_complete')[0]) {
$("body").addClass("mw_wp_form_dn");
}
const email01 = $('input:text[name="email"]').val();
if (typeof email01 !== "undefined") {
$("body").addClass("mw_wp_form_dn");
}
});
</script>
WordPress 2022.7.12
/* ===============================================
# エディタ削除
=============================================== */
function top_disable_block_editor($use_block_editor, $post){
$post_type = $post->post_type;
$post_name = $post->post_name;
if($post_type === 'post' || $post_type === 'directsalon') return false;
return $use_block_editor;
}
add_filter( 'use_block_editor_for_post', 'top_disable_block_editor', 10, 2 );
WordPress 2022.7.9
wp_head
wp_footer
上記2点が記載されているか確認すること