yousan
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Custom Fields] 選択肢の一覧を取得することはできるでしょうか?ちょっと無理やりですが、なんとか配列で取り出すことができました。
$scf_post_id = 76; // SCFが定義されたカスタム投稿タイプのpost_id $groups = get_post_meta( $scf_post_id, 'smart-cf-setting', true ); $choices = SCF::choices_eol_to_array( $groups[0]['fields'][0]['choices'] );実際に使う場合にはget_post_metaで取り出した内容を安全にする必要がありますね。
どなたかのご参考までに。
Forum: Fixing WordPress
In reply to: Monthly archive for CustomPostType not working.create a ticket.
https://core.trac.ww.wp.xz.cn/ticket/35163Sorry this problem is caused from my own side.
WordPress and bp use $HTTP_RAW_POST_DATA with php://input correctly.I set php.ini
always_populate_raw_post_data = -1
then I can upload images with preview.Thanks.
Forum: Fixing WordPress
In reply to: How to add action after upload media?I could add my own action with “add_attachment” action.
add_action('add_attachment', 'my_add_attachment'); function myn_add_attachment($attachment_id) { // blah blah }Forum: Fixing WordPress
In reply to: How to add action after upload media?Now I am using this action.
http://codex.ww.wp.xz.cn/Plugin_API/Action_Reference/add_attachmentThis action might help me.
Forum: Fixing WordPress
In reply to: Uploading of big files filedRe-archive is OK!
Could you please archive to zip or something and upload somewhere?Forum: Fixing WordPress
In reply to: Uploading of big files filedAll right it is strange one server is OK and another is NG.
But it looks caused by PHP error.
If the error caused by server settings, you would find error logs on httpd-error.log or php_error.log.May I download the plugin?
Forum: Fixing WordPress
In reply to: Post List in Admin Panel Not ShowingSounds the post you previously edited do something.
Could you turn on WP_DEBUG and check admin panel html-source?
You might find error messages.Try this plugin?
http://ww.wp.xz.cn/plugins/advanced-access-manager/Forum: Fixing WordPress
In reply to: Uploading of big files filedI see Only big file crashes the uploading.
It looks caused by a plugin.
Check the php file if you can use PHP.
plugins/workerb-media-upload-reloaded/includes/bc-mapi.php:1377Or contact to the author with this error message.
Regards.