⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aboutblog2.php

📁 F2blog v1.1 beta 12.27更新说明 1、后台编辑器增加了文本粘贴与从WORD粘贴
💻 PHP
字号:
<?php
/*
Plugin Name: AboutBlog2
Plugin URI: http://forum.f2blog.com/forum-21-1.html
Description: Show your blog logo and title without box.
Version: 0.1
Author: zach14c
Author URI: http://forum.f2blog.com/profile-uid-22.html
*/

// Install Plugin
function AboutBlog2_install() {
	$arrPlugin['Name'] = "AboutBlog2"; 
	$arrPlugin['Desc'] = "Show your blog logo and title without box."; 
	$arrPlugin['Type'] = "Side";     
	$arrPlugin['Code'] = "";         
	$arrPlugin['Path'] = "";         
	$arrPlugin['DefaultField'] = ""; 
	$arrPlugin['DefaultValue'] = ""; 

	$ActionMessage = install_plugins($arrPlugin);
	return $ActionMessage;
}

//Unstall Plugin
function AboutBlog2_unstall() {
	global $GoogleAdSense_plugin_config;
	$ActionMessage = unstall_plugins("AboutBlog2");
	return $ActionMessage;
}
    
function AboutBlog2($sidename, $sidetitle, $htmlcode, $isInstall) {
	global $settingInfo;
	$logo_img = "./attachments/".$settingInfo['logo'];	
?>	
<!-- About Blog 2 -->
<div class="sidepanel" id="Side_AboutBlog">
  <div class="Pcontent" style="display:">
    <p align="center">
    <img src="<?=$logo_img?>" align="middle" alt="" /><br/>
    <?=$settingInfo['name']?><br/><?=$settingInfo['blogTitle']?></p>
  </div> 
</div> 
<?		
}
add_action('AboutBlog2','AboutBlog2',4);
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -