Private code

VK link target controllerで別ウィンドウに

参考:https://qiita.com/torut/items/6ad75652a9c3d0cd4b8c
VK link target controllerで別ウィンドウにチェックを入れてもデフォルトのままだと別ウィンドウでは開きません。 the_permalink() をしている aタグの親タグに post-[ID] というid属性が必要なため、 id="post-<?php the_ID(); ?>"を追記してください。 ________________________ 例. <div class="tittle"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <span><?php the_excerpt(); ?></span> </div> ________________________ となっていたら <div class="tittle" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <span><?php the_excerpt(); ?></span> </div> というように追記してください。 参考:https://qiita.com/torut/items/6ad75652a9c3d0cd4b8c
Back to Home