PHP

PHPに投稿されたコード一覧

ファイル名に混入した半角を除去byDW

ホーム○ージ○ルダーとかでよくわかってない人がつくるとファイル名なんて適当なので。
ホーム○ージ○ルダーとかでよくわかってない人がつくるとファイル名なんて適当なので。
src="([^"]*) ([^"]*)"

を

src="$1$2"
コードを見る
  • タグ:
  • タグはありません
  • タグ:
  • タグはありません

wp_insert_postで記事投稿添付ファイルつき

wp_insert_postで投稿してwp_insert_attachmentで添付をつける 取得するのは<?php $url = wp_get_attachment_url( 20 ) ); ...
wp_insert_postで投稿してwp_insert_attachmentで添付をつける 取得するのは<?php $url = wp_get_attachment_url( 20 ) ); ...
	<form action="./" method="post" enctype="multipart/form-data">
		<table>
			<tr>
				<th>タイトル</th>
				<td><input type="text" name="post_title" /></td>
コードを見る
  • タグ:
  • タグはありません
  • タグ:
  • タグはありません

My Theme Loginのリダイレクトが動かないから無理やり飛ばす

ユーザー登録完了後にリダイレクト。hiddenのredirect_toにはwp_redirectで勝てる。
ユーザー登録完了後にリダイレクト。hiddenのredirect_toにはwp_redirectで勝てる。
function regist_redirect($user_id){
	wp_redirect('/complete/');
};

add_action('user_register', 'regist_redirect', 1 );
コードを見る
  • タグ:
  • タグはありません

New User Approveプラグインでいきなり承認済み

単なる購読者は無制限で登録できて、寄稿者や編集者は承認が必要というときに使う
単なる購読者は無制限で登録できて、寄稿者や編集者は承認が必要というときに使う
//330行目あたり

					//-------------------------------------
					$user = get_userdata($user_id);
					$user_level = (int) $user->user_level;
コードを見る
  • タグ:
  • タグはありません

HTTPクローラ

とりあえず整理したのでアップロード。
とりあえず整理したのでアップロード。
<?php

$dummyCookie = array();
$redirect_count = 0;

コードを見る
  • タグ:
  • タグはありません