Wordpress サイトの特定のアーカイブ ページに、次の URL があります。
http://fruitpage/2013/04/
年と月の数字は、どの投稿を表示するかを Wordpress に伝えます (2013 年 4 月の投稿)。Wordpress 機能を使用して、ある変数に 2013 を格納し、別の変数に 04 を格納する方法はありますか?
目標は、URL にある年と月をエコーアウトできるようにすることです。次に例を示します。
echo $urlYear; //echoes out 2013 that is found in the url
echo $urlMonth; //echoes out 04 that is found in the url