📅  最后修改于: 2023-12-03 15:21:15.061000             🧑  作者: Mango
这是一个使用PHP和WordPress创建的博客信息背景图片插件。该插件允许网站管理员在他们的博客文章背景中嵌入有关作者和文章的信息。信息包括作者头像,作者名称,文章标题和文章发布日期。
<?php
/**
* WP PHP博客信息背景图片插件
*
* @package WP_PHP_Background_Image
*/
/**
* 注册并显示插件设置选项卡
*/
function wp_php_background_image_settings_page() {
add_menu_page(
'博客信息背景图片',
'博客信息背景图片',
'manage_options',
'wp_php_background_image_settings',
'wp_php_background_image_settings_page_callback'
);
}
add_action( 'admin_menu', 'wp_php_background_image_settings_page' );
/**
* 在插件选项卡中显示表单
*/
function wp_php_background_image_settings_page_callback() {
?>
<div class="wrap">
<h1>博客信息背景图片设置</h1>
<form method="post" action="options.php">
<?php settings_fields( 'wp_php_background_image_settings' ); ?>
<?php do_settings_sections( 'wp_php_background_image_settings' ); ?>
<table class="form-table">
<tr valign="top">
<th scope="row">作者头像</th>
<td><input type="file" name="wp_php_background_image_header_image" /></td>
</tr>
<tr valign="top">
<th scope="row">作者名称</th>
<td><input type="text" name="wp_php_background_image_author_format" /></td>
</tr>
<tr valign="top">
<th scope="row">文章标题</th>
<td><input type="text" name="wp_php_background_image_title_format" /></td>
</tr>
<tr valign="top">
<th scope="row">发布日期</th>
<td><input type="text" name="wp_php_background_image_date_format" /></td>
</tr>
</table>
<?php submit_button(); ?>
</form>
</div>
<?php
}
这是一个简单但实用的插件,可以使您的博客文章更加个性化和专业化。使用它让您的博客更具品牌价值,给读者留下更好的印象。