Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从小部件中的当前帖子中调出多个字段?我已经调整了我的functions.php 以允许PHP。
<?php global $wp_query; if(is_object($wp_query->queried_object) && $wp_query->queried_object->ID) { echo get_post_meta($wp_query->queried_object->ID, 'customfieldname', true); } ?>