ブログ

WordPressメディア追加できない

PHPバージョンアップでのWordPressの不具合

 

  • thumbnailが変更、表示が出来ない
  • メディアの追加が出来ない
  • テーマ検索ができない

 

等々。。。

 

 

 

htaccessへ追加↓

 

PHP_value default_charset none
PHP_value output_handler none

 

 

 

2019-06-30 | Posted in お知らせ, ブログ, ワードプレスComments Closed 

 

お申し込みについて

現在、平成29年4月まで新規の案件は詰まっております。

 

新規でお急ぎの方はメールにてお問合せください。

2016-07-11 | Posted in お知らせ, ブログComments Closed 

 

WordPress|comment

コメント欄の入力項目、メルアドなど消す

comment.phpを

<?php comment_form(); ?>

<?php
$comments_args = array(
	'fields' => array(
		'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
		            '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
		'email'  => '',
		'url'    => '',
	),
	'title_reply'          => 'コメントをどうぞ',
	'comment_notes_before' => '',
	'comment_notes_after'  => '<p class="form-allowed-tags">内容に問題なければ、下記の「コメントを送信する」ボタンを押してください。</p>',
	'label_submit'         => 'コメントを送信する',
);

comment_form($comments_args);
?>

コピペ。。


2015-11-10 | Posted in ブログ, ワードプレスComments Closed 

 

お知らせ

ご新規での案件は、2016年2月からになります。

 

お急ぎの方はメールでお問合せください。

 

担当:高木

2015-09-24 | Posted in お知らせ, ブログComments Closed 

 

2013年は

2013年は、とっても忙しかったです

 

すでに来年の3月まで案件が詰まってます

 

 

いままでMTかPHPを使ったサイト製作がメインでしたが今年からWordPressを使ったサイト製作に移行しました。

 

WordPress、とっても便利ですね!

 

はやく使っとけば良かった。

 

 

今年の変化したことは、スマホの需要拡大

アクセス解析、どれを見てもAndroidがダントツです

Android、iOS スマホのアクセスが一番多い

これ無視してサイト作ってもお金の無駄だと依頼者に言いたい本音。。

 

 

2013-11-03 | Posted in ブログ, 作業依頼Comments Closed 

 

WordPressでRSS配信できない

WordPressでRSS feed 配信できない時は、9割

 

<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?>
 RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />

が抜けています。

 

「外観」→「ヘッダー」のhead内に入れればOKです

2013-01-29 | Posted in ブログ, ワードプレスComments Closed