<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									ランキングの「青ボタン」を新しいタブで開きたいです - CSSカスタマイズ相談				            </title>
            <link>https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/</link>
            <description>Cocoon ディスカッション掲示板</description>
            <language>ja</language>
            <lastBuildDate>Wed, 15 Apr 2026 13:52:42 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: ランキングの「青ボタン」を新しいタブで開きたいです</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11978</link>
                        <pubDate>Mon, 04 Feb 2019 13:54:30 +0000</pubDate>
                        <description><![CDATA[一応、検索から訪れる方向けに「公式ページ」のボタンの開き方の変更方法も合わせて、サンプルコードも置いておきます。//ランキングの「詳細ページ」の開き方を変更する（新しいタブで開く）
add_filter( &#039;cocoon_ranking_detail_page_target&#039;, function($target){
  return &#039;_blank&#039;;
} );

/...]]></description>
                        <content:encoded><![CDATA[<p>一応、検索から訪れる方向けに「公式ページ」のボタンの開き方の変更方法も合わせて、サンプルコードも置いておきます。</p><pre>//ランキングの「詳細ページ」の開き方を変更する（新しいタブで開く）
add_filter( 'cocoon_ranking_detail_page_target', function($target){
  return '_blank';
} );

//ランキングの「公式ページ」の開き方を変更する（現在のタブで開く）
add_filter( 'cocoon_ranking_official_page_target', function($target){
  return '_self';
} ); </pre>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>わいひら</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11978</guid>
                    </item>
				                    <item>
                        <title>RE: ランキングの「青ボタン」を新しいタブで開きたいです</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11977</link>
                        <pubDate>Mon, 04 Feb 2019 13:51:26 +0000</pubDate>
                        <description><![CDATA[方法としては、まずは以下のファイルでテーマをアップデートします
add_filter( &#039;cocoon_ranking_detail_page_target&#039;, function($target){
  return &#039;_blank&#039;;
} );]]></description>
                        <content:encoded><![CDATA[<p>方法としては、まずは以下のファイルでテーマをアップデートします。</p><p>https://github.com/yhira/cocoon<br />最新ファイルをダウンロードする場合は、上記ページのダウンロードボタンからzipファイルをダウンロードしてください。<br />https://wp-cocoon.com/wp-content/uploads/2019/01/github-zip.png</p><p>その後、以下のコードを子テーマのfunctions.phpに追記すると新しいタブで開けるようになるかと思います。</p><pre>//ランキング詳細ページの開き方を変更する
add_filter( 'cocoon_ranking_detail_page_target', function($target){
  return '_blank';
} ); </pre>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>わいひら</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11977</guid>
                    </item>
				                    <item>
                        <title>ランキングの「青ボタン」を新しいタブで開きたいです</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11967</link>
                        <pubDate>Mon, 04 Feb 2019 12:32:57 +0000</pubDate>
                        <description><![CDATA[お世話になります「Cocoon設定→ランキング作成」の『詳細ページURL（青ボタン）』は『ページURL（赤ボタン）』のようなリンクタグ欄がありません青ボタンのリンクも、新しいタブで開く(target=&quot;_blank&quot;)には、どうすればよいでしょうか？ご教示のほどよろしくお願いいたします]]></description>
                        <content:encoded><![CDATA[<p><span style="color: #333333;font-size: 18px;font-style: normal;font-weight: 500;letter-spacing: normal;text-align: start;text-indent: 0px;background-color: #ffffff;float: none">お世話になります</span></p><p><span style="color: #333333;font-size: 18px;font-style: normal;font-weight: 500;letter-spacing: normal;text-align: start;text-indent: 0px;background-color: #ffffff;float: none">「Cocoon設定→ランキング作成」</span>の『詳細ページURL（青ボタン）』は</p><p>『ページURL（赤ボタン）』のようなリンクタグ欄がありません</p><p>青ボタンのリンクも、新しいタブで開く(target="_blank")には、どうすればよいでしょうか？</p><p><span style="color: #333333;font-size: 18px;font-style: normal;font-weight: 500;letter-spacing: normal;text-align: start;text-indent: 0px;background-color: #ffffff;float: none">ご教示のほど<br />よろしくお願いいたします</span></p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>大輔</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%a9%e3%83%b3%e3%82%ad%e3%83%b3%e3%82%b0%e3%81%ae%e3%80%8c%e9%9d%92%e3%83%9c%e3%82%bf%e3%83%b3%e3%80%8d%e3%82%92%e6%96%b0%e3%81%97%e3%81%84%e3%82%bf%e3%83%96%e3%81%a7%e9%96%8b%e3%81%8d%e3%81%9f/#post-11967</guid>
                    </item>
							        </channel>
        </rss>
		