
[Bootstrap4 Display property] How to switch between display and hide on responsive sites
When creating a responsive site with the Bootstrap4 grid system, I summarized the switching method to display […]
続きを読む
[Bootstrap4] How to switch side-by-side button groups vertically [Responsive]
Introducing how to switch the “Bootstrap4” “Horizontal” button group to “Vertical” by making it responsive. Ho […]
続きを読む
[Open Graph and Twitter Card Tags] Error handling [WordPress plugin]
This section explains how to deal with errors in WordPres plug-in “Open Graph and Twitter Card Tags̶ […]
続きを読む
[WordPress] How to branch with custom post taxonomy term
Code <?php if (is_object_in_term($post->ID, ‘[taxonomy]’,'[term]’)){ ?> <?php } else { ?> <? […]
続きを読む
[WordPress] How to reflect CSS in the visual editor
Code functions.php add_editor_style(); add_editor_style(“editor-style.css”);; CSS wp-content/themes/[theme fol […]
続きを読む
[WordPress] How to prevent grandchild category from being created
Code functions.php function my_admin_style() { echo ‘<style> option.level-1{ display:none; } </style& […]
続きを読む
[WordPress] How to output a short code in a theme file
This section introduces how to output a short code in a theme file. Code <?php echo do_shortcode(‘[shortcod […]
続きを読む
[WordPress] AMP page and other page branching method
Introduce how to branch AMP pages and other pages. Plugin https://ja.wordpress.org/plugins/amp/ Code if(functi […]
続きを読む
[qTranslate-XT]Build Google XML Sitemap, including pages with all different languages
This is an introduction to sitemap.xml generation plug-in that supports other language sites created using qTr […]
続きを読む
[QTranslate-XT] How to branch by language
Code <?php if(qtranxf_getLanguage()==’ja’): ?> <p>日本語</p> <?php elseif(qtranxf_getLanguag […]
続きを読む