はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    WWDC25

『WordPress Development Stack Exchange』

  • 人気
  • 新着
  • すべて
  • Can i merge 2 new WP_Query($variable) 's?

    3 users

    wordpress.stackexchange.com

    I am running a multisite network and i have setup a sql query that uses swith_to_blog(); and queries the posts. Is there a way that i can declare the query inside a new WP_Query and actually merge that query with another? Basically if i do this: $number1 = new WP_Query($multisitequery); Can i merge it with: $number2 = new WP_Query($normalquery); $normalquery holds settings like pagination, per pag

    • テクノロジー
    • 2015/12/04 10:52
    • WordPress
    • Disable emojicons introduced with WP 4.2

      3 users

      wordpress.stackexchange.com

      So WP 4.2 introduced emojis (smileys) that basically adds JS and other junk all over your pages. Something some people may find shocking. How does one completely erase all instances of this?

      • テクノロジー
      • 2015/08/05 15:29
      • emoji
      • WordPress
      • Use a different domain for SSL

        3 users

        wordpress.stackexchange.com

        long time lurker - first time poster. A client of mine has a website developed in CakePHP, and a wordpress blog installed in the /blog/ directory. Let's say the url of the main domain is http://www.realdomain.com, with the blog being http://www.realdomain.com/blog/. They don't have their own SSL certificate so they use my companies. Let's say the secure URL is https://realdomain.maindomain.net/blo

        • テクノロジー
        • 2015/03/08 19:53
        • wordpress
        • security
        • How to customize the_archive_title()?

          4 users

          wordpress.stackexchange.com

          In my child theme's archive.php, I have the following code for displaying the title of my archive pages: <?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?> But that displays my titles as "Category: Category Title" instead of simply the title without the prepended "Category: ". My first instinct was to override get_the_archive_title() from wp-includes/general-template. But from what

          • テクノロジー
          • 2015/03/08 08:47
          • WordPress
          • Custom Post Type Archives by Year & Month?

            3 users

            wordpress.stackexchange.com

            Stack Exchange Network Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. Visit Stack Exchange

            • テクノロジー
            • 2014/10/30 13:07
            • wordpress
            • update_post_meta and update_field ony working when saving the post

              3 users

              wordpress.stackexchange.com

              I use Advanced Custom Fields (ACF) to store data in a custom field. I had latitude and longitude information stored separately, but I they need to be in one custom field so I made the function below. $query just queries all the relevant posts. <?php $query = query_custom_posts(); if($query->have_posts()): while ($query->have_posts()): $query->the_post(); if(get_field('map_lat') && get_field('map_l

              • テクノロジー
              • 2014/09/30 15:00
              • WordPress
              • Insert Post using Ajax

                3 users

                wordpress.stackexchange.com

                I'm using the following code to submit a form from a Wordpress page. <script type="text/javascript"> $j=jQuery.noConflict(); $j(document).ready(function(){ $j("#enqform").validate({ submitHandler: function () { dataString = $j("#enqform").serialize(); $.ajax({ type: "POST", url: "http://www.mysite.co.uk/wp-content/themes/mytheme/lib/form-process.php", data: dataString, error: function(jqXHR, textS

                • テクノロジー
                • 2014/09/25 18:02
                • jQuery
                • WordPress
                • SSL redirect loop using Wordpress HTTPS Plugin

                  3 users

                  wordpress.stackexchange.com

                  I recently struggled with a similar issue, so I'll offer a couple of additional pieces of information for people who search for this question. The first step you should take when trying to force SSL for Admin of your site is to follow the directions in the codex . This means defining the FORCE_SSL_ADMIN option in your wp-config.php file. Be sure to take note of the warning in the codex that this e

                  • テクノロジー
                  • 2013/07/17 14:24
                  • Uninstall, Activate, Deactivate a plugin: typical features & how-to

                    4 users

                    wordpress.stackexchange.com

                    There are three different hooks. They trigger in the following cases: Uninstall Deactivation Activation How-to trigger functions safely during the scenarios The following shows the right ways to safely hook callback functions that get triggered during the mentioned actions. As you could use this code in a plugin that uses plain functions, a class or an external class, I'll show three different dem

                    • テクノロジー
                    • 2012/12/14 06:08
                    • wordpress
                    • plugin
                    • When should you use WP_Query vs query_posts() vs get_posts()?

                      3 users

                      wordpress.stackexchange.com

                      It seems like half the tutorials in the Codex and around the blogosphere use query_posts() and half use WP_Query. They all do similar things, so when should I use one over the others?

                      • テクノロジー
                      • 2012/09/26 17:45
                      • WordPress
                      • Include custom taxonomy term in search

                        3 users

                        wordpress.stackexchange.com

                        I have two custom taxonomies applied to two custom post types. the terms list on the sidebar just fine and will list all posts associated with it. However, if you search one of the terms in specific, it doesn't bring up a post with that term. Example: http://dev.andrewnorcross.com/das/all-case-studies/ Search for term "PQRI" I get nothing. Any ideas? I've tried using various search plugins but the

                        • テクノロジー
                        • 2012/03/28 12:57
                        • wordpress
                        • search
                        • Best collection of code for your 'functions.php' file

                          26 users

                          wordpress.stackexchange.com

                          As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. As with many others who are now viewing this post, I have

                          • テクノロジー
                          • 2011/02/07 12:00
                          • wordpress
                          • *wordpress
                          • カスタマイズ
                          • *Web制作
                          • php
                          • web制作
                          • まとめ
                          • WordPress Development Stack Exchange

                            16 users

                            wordpress.stackexchange.com

                            Stack Exchange Network Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. Visit Stack Exchange

                            • テクノロジー
                            • 2010/09/04 08:35
                            • wordpress
                            • php
                            • development

                            このページはまだ
                            ブックマークされていません

                            このページを最初にブックマークしてみませんか?

                            『WordPress Development Stack Exchange』の新着エントリーを見る

                            キーボードショートカット一覧

                            j次のブックマーク

                            k前のブックマーク

                            lあとで読む

                            eコメント一覧を開く

                            oページを開く

                            はてなブックマーク

                            • 総合
                            • 一般
                            • 世の中
                            • 政治と経済
                            • 暮らし
                            • 学び
                            • テクノロジー
                            • エンタメ
                            • アニメとゲーム
                            • おもしろ
                            • アプリ・拡張機能
                            • 開発ブログ
                            • ヘルプ
                            • お問い合わせ
                            • ガイドライン
                            • 利用規約
                            • プライバシーポリシー
                            • 利用者情報の外部送信について
                            • ガイドライン
                            • 利用規約
                            • プライバシーポリシー
                            • 利用者情報の外部送信について

                            公式Twitter

                            • 公式アカウント
                            • ホットエントリー

                            はてなのサービス

                            • はてなブログ
                            • はてなブログPro
                            • 人力検索はてな
                            • はてなブログ タグ
                            • はてなニュース
                            • ソレドコ
                            • App Storeからダウンロード
                            • Google Playで手に入れよう
                            Copyright © 2005-2025 Hatena. All Rights Reserved.
                            設定を変更しましたx