PHP Wordpress帖子的选项[年份]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress帖子的选项[年份]相关的知识,希望对你有一定的参考价值。

/**
 * Date field
 * 
 */

/**
 * Display the metabox
 */
function date_custom_metabox() {
	global $post;
	$year = get_post_meta( $post->ID, 'year', true );
?>
	<p><label for="startdate">Rok:</label><br />
		<input id="startdate" size="37" name="year" class="event-date" value="<?php if( $year) { echo $year; } ?>" /></label></p>
<?php
}

/**
 * Process the custom metabox fields
 */
function save_custom_date( $post_id ) {
	global $post;	
	
	if( $_POST ) {
		update_post_meta( $post->ID, 'year', $_POST['year'] );
	}
}

// Add action hooks. Without these we are lost
add_action( 'admin_init', 'add_custom_metabox' );
add_action( 'save_post', 'save_custom_date' );


/**
 * Add meta box
 */
function add_custom_metabox() {
	add_meta_box( 'custom-metabox', 'Year', 'date_custom_metabox', 'post', 'normal', 'high' );
}

以上是关于PHP Wordpress帖子的选项[年份]的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress - 存档页面:按年份列出帖子

WordPress 查询:按年份 DESC 对帖子进行分组,然后在每个组中按月 ASC 发布帖子

Wordpress - 计算每年的帖子

php 添加此代码以将ACF字段添加到页面/帖子。务必检查wordpress仪表板顶部菜单中的屏幕选项

按年份“query_posts()”问题的 Wordpress 存档

如何过滤 wordpress the_date() 和 get_the_date() 函数以仅显示帖子发布的年份