This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: includes/flags.php | |
| =================================================================== | |
| --- includes/flags.php (revision 1522857) | |
| +++ includes/flags.php (working copy) | |
| @@ -53,6 +53,7 @@ | |
| 'hy' => 'am', | |
| 'ja' => 'jp', | |
| 'kk' => 'kz', | |
| + 'km' => 'kh', | |
| 'lo' => 'la', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem install jekyll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(d,s){s=d.createElement('style');t=d.createTextNode("#postbox-container-2 .postbox{width: 30%;float: left;margin-right: 10px;}");s.appendChild(t);d.head.appendChild(s);})(document); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Shortcake UI Pullquote Demo | |
| * Plugin URI: | |
| * Description: Try Shortcake with pull-quite shortcode | |
| * Version: 1.0.0 | |
| * Author: Mte90 | |
| * License: GPL2 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: custom-nextpage.php | |
| =================================================================== | |
| --- custom-nextpage.php (revision 1388038) | |
| +++ custom-nextpage.php (working copy) | |
| @@ -142,7 +142,7 @@ | |
| } | |
| public function wp_link_pages( $output = '' ) { | |
| - global $page, $numpages, $multipage, $pagenow; | |
| + global $wp_query, $wp_rewrite, $page, $numpages, $multipage, $pagenow; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //「 コメントをすべて見る」の状態で発動させます。 | |
| var list=document.getElementsByClassName('UFIList')[0].childNodes[2].childNodes; | |
| for(var i=0;i<=list.length;i++){ | |
| if(list[i].className!==' UFIReplyList'){ | |
| var content = list[i].childNodes[0].childNodes[1].childNodes[0].childNodes[1].childNodes[0].childNodes[0].childNodes; | |
| document.write( | |
| i+',' | |
| +content[0].innerText+',' //名前 | |
| +content[0].childNodes[0].href+',"' //Facebook URL | |
| +content[1].innerText //コメント内容 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ブラウザで参加者リストを開いて、コンソールで以下をたたいてね。 | |
| console.log("31日:"+document.getElementsByClassName("tix-attendee-list")[0].getElementsByTagName('li').length); | |
| console.log("コントリビューターデイ:"+document.getElementsByClassName("tix-attendee-list")[1].getElementsByTagName('li').length); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (max-width: 600px) { | |
| img.alignleft, .alignleft img, img.aligncenter, .aligncenter img, img.alignright, .alignright img, img.alignnone, .alignnone img { | |
| padding: 5px 0; | |
| border: 0; | |
| min-width: 100%; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var deleteAllGroupMembers = (function () { | |
| var deleteAllGroupMembers = {}; | |
| // the facebook ids of the users that will not be removed. | |
| // IMPORTANT: add your own facebook id here so that the script will not remove yourself! | |
| var excludedFbIds = ['1234','11223344']; // make sure each id is a string! | |
| var usersToDeleteQueue = []; | |
| var scriptEnabled = false; | |
| var processing = false; | |
| deleteAllGroupMembers.start = function() { |