すべてのコード

投稿されたすべてのコード一覧

  • タグ:
  • タグはありません
  • タグ:
  • タグはありません

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>
コードを見る
  • タグ:
  • タグはありません

codetterのテスト

どんな感じになるのかテストしてみるる 内容は適当にインデントっぽい事をするというものです。 適当なので最適化などはしてませんが。
どんな感じになるのかテストしてみるる 内容は適当にインデントっぽい事をするというものです。 適当なので最適化などはしてませんが。
	protected String adjustLength(String value, int maxLen) {
		String result = value;
		int len = value.getBytes().length;
		if ((maxLen - len) / 3 >= 1) {
			result = result + StringUtils.repeat(" ", (maxLen - len) / 3);
コードを見る
  • yy3
  • 2011/7/27 23:34
  • タグ:
  • タグはありません
  • タグ:
  • タグはありません