git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_Web/trunk@21 77ab8c26-3d69-2c4d-86f2-786f4ba54905
750
src/wp-content/plugins/akismet/admin.php
Normal file
@ -0,0 +1,750 @@
|
|||||||
|
<?php
|
||||||
|
add_action( 'admin_menu', 'akismet_config_page' );
|
||||||
|
add_action( 'admin_menu', 'akismet_stats_page' );
|
||||||
|
akismet_admin_warnings();
|
||||||
|
|
||||||
|
function akismet_admin_init() {
|
||||||
|
global $wp_version;
|
||||||
|
|
||||||
|
// all admin functions are disabled in old versions
|
||||||
|
if ( !function_exists('is_multisite') && version_compare( $wp_version, '3.0', '<' ) ) {
|
||||||
|
|
||||||
|
function akismet_version_warning() {
|
||||||
|
echo "
|
||||||
|
<div id='akismet-warning' class='updated fade'><p><strong>".sprintf(__('Akismet %s requires WordPress 3.0 or higher.'), AKISMET_VERSION) ."</strong> ".sprintf(__('Please <a href="%s">upgrade WordPress</a> to a current version, or <a href="%s">downgrade to version 2.4 of the Akismet plugin</a>.'), 'http://codex.wordpress.org/Upgrading_WordPress', 'http://wordpress.org/extend/plugins/akismet/download/'). "</p></div>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
add_action('admin_notices', 'akismet_version_warning');
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( function_exists( 'get_plugin_page_hook' ) )
|
||||||
|
$hook = get_plugin_page_hook( 'akismet-stats-display', 'index.php' );
|
||||||
|
else
|
||||||
|
$hook = 'dashboard_page_akismet-stats-display';
|
||||||
|
add_action('admin_head-'.$hook, 'akismet_stats_script');
|
||||||
|
add_meta_box('akismet-status', __('Comment History'), 'akismet_comment_status_meta_box', 'comment', 'normal');
|
||||||
|
wp_register_style('akismet.css', AKISMET_PLUGIN_URL . 'akismet.css');
|
||||||
|
wp_enqueue_style('akismet.css');
|
||||||
|
wp_register_script('akismet.js', AKISMET_PLUGIN_URL . 'akismet.js', array('jquery'));
|
||||||
|
wp_enqueue_script('akismet.js');
|
||||||
|
}
|
||||||
|
add_action('admin_init', 'akismet_admin_init');
|
||||||
|
|
||||||
|
function akismet_nonce_field($action = -1) { return wp_nonce_field($action); }
|
||||||
|
$akismet_nonce = 'akismet-update-key';
|
||||||
|
|
||||||
|
function akismet_config_page() {
|
||||||
|
if ( function_exists('add_submenu_page') )
|
||||||
|
add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_plugin_action_links( $links, $file ) {
|
||||||
|
if ( $file == plugin_basename( dirname(__FILE__).'/akismet.php' ) ) {
|
||||||
|
$links[] = '<a href="plugins.php?page=akismet-key-config">'.__('Settings').'</a>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $links;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_filter( 'plugin_action_links', 'akismet_plugin_action_links', 10, 2 );
|
||||||
|
|
||||||
|
function akismet_conf() {
|
||||||
|
global $akismet_nonce, $wpcom_api_key;
|
||||||
|
|
||||||
|
if ( isset($_POST['submit']) ) {
|
||||||
|
if ( function_exists('current_user_can') && !current_user_can('manage_options') )
|
||||||
|
die(__('Cheatin’ uh?'));
|
||||||
|
|
||||||
|
check_admin_referer( $akismet_nonce );
|
||||||
|
$key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
|
||||||
|
$home_url = parse_url( get_bloginfo('url') );
|
||||||
|
|
||||||
|
if ( empty($key) ) {
|
||||||
|
$key_status = 'empty';
|
||||||
|
$ms[] = 'new_key_empty';
|
||||||
|
delete_option('wordpress_api_key');
|
||||||
|
} elseif ( empty($home_url['host']) ) {
|
||||||
|
$key_status = 'empty';
|
||||||
|
$ms[] = 'bad_home_url';
|
||||||
|
} else {
|
||||||
|
$key_status = akismet_verify_key( $key );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $key_status == 'valid' ) {
|
||||||
|
update_option('wordpress_api_key', $key);
|
||||||
|
$ms[] = 'new_key_valid';
|
||||||
|
} else if ( $key_status == 'invalid' ) {
|
||||||
|
$ms[] = 'new_key_invalid';
|
||||||
|
} else if ( $key_status == 'failed' ) {
|
||||||
|
$ms[] = 'new_key_failed';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_POST['akismet_discard_month'] ) )
|
||||||
|
update_option( 'akismet_discard_month', 'true' );
|
||||||
|
else
|
||||||
|
update_option( 'akismet_discard_month', 'false' );
|
||||||
|
|
||||||
|
if ( isset( $_POST['akismet_show_user_comments_approved'] ) )
|
||||||
|
update_option( 'akismet_show_user_comments_approved', 'true' );
|
||||||
|
else
|
||||||
|
update_option( 'akismet_show_user_comments_approved', 'false' );
|
||||||
|
|
||||||
|
} elseif ( isset($_POST['check']) ) {
|
||||||
|
akismet_get_server_connectivity(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( empty( $key_status) || $key_status != 'valid' ) {
|
||||||
|
$key = get_option('wordpress_api_key');
|
||||||
|
if ( empty( $key ) ) {
|
||||||
|
if ( empty( $key_status ) || $key_status != 'failed' ) {
|
||||||
|
if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
|
||||||
|
$ms[] = 'no_connection';
|
||||||
|
else
|
||||||
|
$ms[] = 'key_empty';
|
||||||
|
}
|
||||||
|
$key_status = 'empty';
|
||||||
|
} else {
|
||||||
|
$key_status = akismet_verify_key( $key );
|
||||||
|
}
|
||||||
|
if ( $key_status == 'valid' ) {
|
||||||
|
$ms[] = 'key_valid';
|
||||||
|
} else if ( $key_status == 'invalid' ) {
|
||||||
|
delete_option('wordpress_api_key');
|
||||||
|
$ms[] = 'key_empty';
|
||||||
|
} else if ( !empty($key) && $key_status == 'failed' ) {
|
||||||
|
$ms[] = 'key_failed';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$messages = array(
|
||||||
|
'new_key_empty' => array('color' => 'aa0', 'text' => __('Your key has been cleared.')),
|
||||||
|
'new_key_valid' => array('color' => '4AB915', 'text' => __('Your key has been verified. Happy blogging!')),
|
||||||
|
'new_key_invalid' => array('color' => '888', 'text' => __('The key you entered is invalid. Please double-check it.')),
|
||||||
|
'new_key_failed' => array('color' => '888', 'text' => __('The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration.')),
|
||||||
|
'no_connection' => array('color' => '888', 'text' => __('There was a problem connecting to the Akismet server. Please check your server configuration.')),
|
||||||
|
'key_empty' => array('color' => 'aa0', 'text' => sprintf(__('Please enter an API key. (<a href="%s" style="color:#fff">Get your key.</a>)'), 'http://akismet.com/get/')),
|
||||||
|
'key_valid' => array('color' => '4AB915', 'text' => __('This key is valid.')),
|
||||||
|
'key_failed' => array('color' => 'aa0', 'text' => __('The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration.')),
|
||||||
|
'bad_home_url' => array('color' => '888', 'text' => sprintf( __('Your WordPress home URL %s is invalid. Please fix the <a href="%s">home option</a>.'), esc_html( get_bloginfo('url') ), admin_url('options.php#home') ) ),
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<?php if ( !empty($_POST['submit'] ) ) : ?>
|
||||||
|
<div id="message" class="updated fade"><p><strong><?php _e('Options saved.') ?></strong></p></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<div class="wrap">
|
||||||
|
<h2><?php _e('Akismet Configuration'); ?></h2>
|
||||||
|
<?php if (isset($_GET['message']) && $_GET['message'] == 'success') { ?>
|
||||||
|
<div class="updated below-h2" id="message"><p><?php _e( '<strong>Sign up success!</strong> Please check your email for your Akismet API Key and enter it below.' ); ?></p></div>
|
||||||
|
<?php } ?>
|
||||||
|
<div class="narrow">
|
||||||
|
<form action="" method="post" id="akismet-conf" style="margin: auto; width: 400px; ">
|
||||||
|
<?php if ( !$wpcom_api_key ) { ?>
|
||||||
|
<p><?php printf(__('For many people, <a href="%1$s">Akismet</a> will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as "spam" on the moderation screen and Akismet will learn from the mistakes. If you don\'t have an API key yet, you can get one at <a href="%2$s">Akismet.com</a>.'), 'http://akismet.com/', 'http://akismet.com/get/'); ?></p>
|
||||||
|
|
||||||
|
<h3><label for="key"><?php _e('Akismet API Key'); ?></label></h3>
|
||||||
|
<?php foreach ( $ms as $m ) : ?>
|
||||||
|
<p style="padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;"><?php echo $messages[$m]['text']; ?></p>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<p><input id="key" name="key" type="text" size="15" maxlength="12" value="<?php echo get_option('wordpress_api_key'); ?>" style="font-family: 'Courier New', Courier, mono; font-size: 1.5em;" /> (<?php _e('<a href="http://akismet.com/get/">What is this?</a>'); ?>)</p>
|
||||||
|
<?php if ( isset( $invalid_key) && $invalid_key ) { ?>
|
||||||
|
<h3><?php _e('Why might my key be invalid?'); ?></h3>
|
||||||
|
<p><?php _e('This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar.'); ?></p>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
<?php akismet_nonce_field($akismet_nonce) ?>
|
||||||
|
<p><label><input name="akismet_discard_month" id="akismet_discard_month" value="true" type="checkbox" <?php if ( get_option('akismet_discard_month') == 'true' ) echo ' checked="checked" '; ?> /> <?php _e('Auto-delete spam submitted on posts more than a month old.'); ?></label></p>
|
||||||
|
<p><label><input name="akismet_show_user_comments_approved" id="akismet_show_user_comments_approved" value="true" type="checkbox" <?php if ( get_option('akismet_show_user_comments_approved') == 'true' ) echo ' checked="checked" '; ?> /> <?php _e('Show the number of comments you\'ve approved beside each comment author.'); ?></label></p>
|
||||||
|
<p class="submit"><input type="submit" name="submit" value="<?php _e('Update options »'); ?>" /></p>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<form action="" method="post" id="akismet-connectivity" style="margin: auto; width: 400px; ">
|
||||||
|
|
||||||
|
<h3><?php _e('Server Connectivity'); ?></h3>
|
||||||
|
<?php
|
||||||
|
if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') ) {
|
||||||
|
?>
|
||||||
|
<p style="padding: .5em; background-color: #888; color: #fff; font-weight:bold;"><?php _e('Network functions are disabled.'); ?></p>
|
||||||
|
<p><?php echo sprintf( __('Your web host or server administrator has disabled PHP\'s <code>fsockopen</code> or <code>gethostbynamel</code> functions. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet\'s system requirements</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
|
||||||
|
<?php
|
||||||
|
} else {
|
||||||
|
$servers = akismet_get_server_connectivity();
|
||||||
|
$fail_count = count($servers) - count( array_filter($servers) );
|
||||||
|
if ( is_array($servers) && count($servers) > 0 ) {
|
||||||
|
// some connections work, some fail
|
||||||
|
if ( $fail_count > 0 && $fail_count < count($servers) ) { ?>
|
||||||
|
<p style="padding: .5em; background-color: #aa0; color: #fff; font-weight:bold;"><?php _e('Unable to reach some Akismet servers.'); ?></p>
|
||||||
|
<p><?php echo sprintf( __('A network problem or firewall is blocking some connections from your web server to Akismet.com. Akismet is working but this may cause problems during times of network congestion. Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
|
||||||
|
<?php
|
||||||
|
// all connections fail
|
||||||
|
} elseif ( $fail_count > 0 ) { ?>
|
||||||
|
<p style="padding: .5em; background-color: #888; color: #fff; font-weight:bold;"><?php _e('Unable to reach any Akismet servers.'); ?></p>
|
||||||
|
<p><?php echo sprintf( __('A network problem or firewall is blocking all connections from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
|
||||||
|
<?php
|
||||||
|
// all connections work
|
||||||
|
} else { ?>
|
||||||
|
<p style="padding: .5em; background-color: #4AB915; color: #fff; font-weight:bold;"><?php _e('All Akismet servers are available.'); ?></p>
|
||||||
|
<p><?php _e('Akismet is working correctly. All servers are accessible.'); ?></p>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
?>
|
||||||
|
<p style="padding: .5em; background-color: #888; color: #fff; font-weight:bold;"><?php _e('Unable to find Akismet servers.'); ?></p>
|
||||||
|
<p><?php echo sprintf( __('A DNS problem or firewall is preventing all access from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( !empty($servers) ) {
|
||||||
|
?>
|
||||||
|
<table style="width: 100%;">
|
||||||
|
<thead><th><?php _e('Akismet server'); ?></th><th><?php _e('Network Status'); ?></th></thead>
|
||||||
|
<tbody>
|
||||||
|
<?php
|
||||||
|
asort($servers);
|
||||||
|
foreach ( $servers as $ip => $status ) {
|
||||||
|
$color = ( $status ? '#4AB915' : '#888');
|
||||||
|
?>
|
||||||
|
<tr>
|
||||||
|
<td><?php echo htmlspecialchars($ip); ?></td>
|
||||||
|
<td style="padding: 0 .5em; font-weight:bold; color: #fff; background-color: <?php echo $color; ?>"><?php echo ($status ? __('Accessible') : __('Re-trying') ); ?></td>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<p><?php if ( get_option('akismet_connectivity_time') ) echo sprintf( __('Last checked %s ago.'), human_time_diff( get_option('akismet_connectivity_time') ) ); ?></p>
|
||||||
|
<p class="submit"><input type="submit" name="check" value="<?php _e('Check network status »'); ?>" /></p>
|
||||||
|
<p><?php printf( __('<a href="%s" target="_blank">Click here</a> to confirm that <a href="%s" target="_blank">Akismet.com is up</a>.'), 'http://status.automattic.com/9931/136079/Akismet-API', 'http://status.automattic.com/9931/136079/Akismet-API' ); ?></p>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_stats_page() {
|
||||||
|
if ( function_exists('add_submenu_page') )
|
||||||
|
add_submenu_page('index.php', __('Akismet Stats'), __('Akismet Stats'), 'manage_options', 'akismet-stats-display', 'akismet_stats_display');
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_stats_script() {
|
||||||
|
?>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function resizeIframe() {
|
||||||
|
|
||||||
|
document.getElementById('akismet-stats-frame').style.height = "2500px";
|
||||||
|
|
||||||
|
};
|
||||||
|
function resizeIframeInit() {
|
||||||
|
document.getElementById('akismet-stats-frame').onload = resizeIframe;
|
||||||
|
window.onresize = resizeIframe;
|
||||||
|
}
|
||||||
|
addLoadEvent(resizeIframeInit);
|
||||||
|
</script><?php
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function akismet_stats_display() {
|
||||||
|
global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
|
||||||
|
$blog = urlencode( get_bloginfo('url') );
|
||||||
|
|
||||||
|
$url = 'http://';
|
||||||
|
if ( is_ssl() )
|
||||||
|
$url = 'https://';
|
||||||
|
|
||||||
|
$url .= 'akismet.com/web/1.0/user-stats.php';
|
||||||
|
$url .= "?blog={$blog}&api_key=" . akismet_get_key();
|
||||||
|
?>
|
||||||
|
<div class="wrap">
|
||||||
|
<iframe src="<?php echo $url; ?>" width="100%" height="100%" frameborder="0" id="akismet-stats-frame"></iframe>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_stats() {
|
||||||
|
if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
|
||||||
|
return;
|
||||||
|
if ( !$count = get_option('akismet_spam_count') )
|
||||||
|
return;
|
||||||
|
$path = plugin_basename(__FILE__);
|
||||||
|
echo '<h3>' . _x( 'Spam', 'comments' ) . '</h3>';
|
||||||
|
global $submenu;
|
||||||
|
if ( isset( $submenu['edit-comments.php'] ) )
|
||||||
|
$link = 'edit-comments.php';
|
||||||
|
else
|
||||||
|
$link = 'edit.php';
|
||||||
|
echo '<p>'.sprintf( _n( '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.', '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.', $count ), 'http://akismet.com/', clean_url("$link?page=akismet-admin"), number_format_i18n($count) ).'</p>';
|
||||||
|
}
|
||||||
|
add_action('activity_box_end', 'akismet_stats');
|
||||||
|
|
||||||
|
function akismet_admin_warnings() {
|
||||||
|
global $wpcom_api_key;
|
||||||
|
if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
|
||||||
|
function akismet_warning() {
|
||||||
|
echo "
|
||||||
|
<div id='akismet-warning' class='updated fade'><p><strong>".__('Akismet is almost ready.')."</strong> ".sprintf(__('You must <a href="%1$s">enter your Akismet API key</a> for it to work.'), "plugins.php?page=akismet-key-config")."</p></div>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
add_action('admin_notices', 'akismet_warning');
|
||||||
|
return;
|
||||||
|
} elseif ( ( empty($_SERVER['SCRIPT_FILENAME']) || basename($_SERVER['SCRIPT_FILENAME']) == 'edit-comments.php' ) && wp_next_scheduled('akismet_schedule_cron_recheck') ) {
|
||||||
|
function akismet_warning() {
|
||||||
|
global $wpdb;
|
||||||
|
$waiting = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->commentmeta WHERE meta_key = 'akismet_error'" ) );
|
||||||
|
$next_check = human_time_diff( wp_next_scheduled('akismet_schedule_cron_recheck') );
|
||||||
|
if ( $waiting > 0 )
|
||||||
|
echo "
|
||||||
|
<div id='akismet-warning' class='updated fade'><p><strong>".__('Akismet has detected a problem.')."</strong> ".sprintf(_n('A server or network problem prevented Akismet from checking %d comment. It has been temporarily held for moderation and will be automatically re-checked in %s.', 'A server or network problem prevented Akismet from checking %d comments. They have been temporarily held for moderation and will be automatically re-checked in %s.', $waiting), number_format_i18n( $waiting ), $next_check)."</p></div>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
add_action('admin_notices', 'akismet_warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// FIXME placeholder
|
||||||
|
|
||||||
|
function akismet_comment_row_action( $a, $comment ) {
|
||||||
|
|
||||||
|
// failsafe for old WP versions
|
||||||
|
if ( !function_exists('add_comment_meta') )
|
||||||
|
return $a;
|
||||||
|
|
||||||
|
$akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true );
|
||||||
|
$user_result = get_comment_meta( $comment->comment_ID, 'akismet_user_result', true);
|
||||||
|
$comment_status = wp_get_comment_status( $comment->comment_ID );
|
||||||
|
$desc = null;
|
||||||
|
if ( !$user_result || $user_result == $akismet_result ) {
|
||||||
|
// Show the original Akismet result if the user hasn't overridden it, or if their decision was the same
|
||||||
|
if ( $akismet_result == 'true' && $comment_status != 'spam' && $comment_status != 'trash' )
|
||||||
|
$desc = __( 'Flagged as spam by Akismet' );
|
||||||
|
elseif ( $akismet_result == 'false' && $comment_status == 'spam' )
|
||||||
|
$desc = __( 'Cleared by Akismet' );
|
||||||
|
} else {
|
||||||
|
$who = get_comment_meta( $comment->comment_ID, 'akismet_user', true );
|
||||||
|
if ( $user_result == 'true' )
|
||||||
|
$desc = sprintf( __('Flagged as spam by %s'), $who );
|
||||||
|
else
|
||||||
|
$desc = sprintf( __('Un-spammed by %s'), $who );
|
||||||
|
}
|
||||||
|
|
||||||
|
// add a History item to the hover links, just after Edit
|
||||||
|
if ( $akismet_result ) {
|
||||||
|
$b = array();
|
||||||
|
foreach ( $a as $k => $item ) {
|
||||||
|
$b[ $k ] = $item;
|
||||||
|
if ( $k == 'edit' )
|
||||||
|
$b['history'] = '<a href="comment.php?action=editcomment&c='.$comment->comment_ID.'#akismet-status" title="'. esc_attr__( 'View comment history' ) . '"> '. __('History') . '</a>';
|
||||||
|
}
|
||||||
|
|
||||||
|
$a = $b;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $desc )
|
||||||
|
echo '<span class="akismet-status" commentid="'.$comment->comment_ID.'"><a href="comment.php?action=editcomment&c='.$comment->comment_ID.'#akismet-status" title="' . esc_attr__( 'View comment history' ) . '">'.htmlspecialchars($desc).'</a></span>';
|
||||||
|
|
||||||
|
if ( apply_filters( 'akismet_show_user_comments_approved', get_option('akismet_show_user_comments_approved') ) == 'true' ) {
|
||||||
|
$comment_count = akismet_get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url );
|
||||||
|
$comment_count = intval( $comment_count );
|
||||||
|
echo '<span class="akismet-user-comment-count" commentid="'.$comment->comment_ID.'" style="display:none;"><br><span class="akismet-user-comment-counts">'.sprintf( _n( '%s approved', '%s approved', $comment_count ), number_format_i18n( $comment_count ) ) . '</span></span>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $a;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_filter( 'comment_row_actions', 'akismet_comment_row_action', 10, 2 );
|
||||||
|
|
||||||
|
function akismet_comment_status_meta_box($comment) {
|
||||||
|
$history = akismet_get_comment_history( $comment->comment_ID );
|
||||||
|
|
||||||
|
if ( $history ) {
|
||||||
|
echo '<div class="akismet-history" style="margin: 13px;">';
|
||||||
|
foreach ( $history as $row ) {
|
||||||
|
$time = date( 'D d M Y @ h:i:m a', $row['time'] ) . ' GMT';
|
||||||
|
echo '<div style="margin-bottom: 13px;"><span style="color: #999;" alt="' . $time . '" title="' . $time . '">' . sprintf( __('%s ago'), human_time_diff( $row['time'] ) ) . '</span> - ';
|
||||||
|
echo htmlspecialchars( $row['message'] ) . '</div>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// add an extra column header to the comments screen
|
||||||
|
function akismet_comments_columns( $columns ) {
|
||||||
|
$columns[ 'akismet' ] = __( 'Akismet' );
|
||||||
|
return $columns;
|
||||||
|
}
|
||||||
|
|
||||||
|
#add_filter( 'manage_edit-comments_columns', 'akismet_comments_columns' );
|
||||||
|
|
||||||
|
// Show stuff in the extra column
|
||||||
|
function akismet_comment_column_row( $column, $comment_id ) {
|
||||||
|
if ( $column != 'akismet' )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$history = akismet_get_comment_history( $comment_id );
|
||||||
|
|
||||||
|
if ( $history ) {
|
||||||
|
echo '<dl class="akismet-history">';
|
||||||
|
foreach ( $history as $row ) {
|
||||||
|
echo '<dt>' . sprintf( __('%s ago'), human_time_diff( $row['time'] ) ) . '</dt>';
|
||||||
|
echo '<dd>' . htmlspecialchars( $row['message'] ) . '</dd>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '</dl>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#add_action( 'manage_comments_custom_column', 'akismet_comment_column_row', 10, 2 );
|
||||||
|
|
||||||
|
// END FIXME
|
||||||
|
|
||||||
|
// call out URLS in comments
|
||||||
|
function akismet_text_add_link_callback( $m ) {
|
||||||
|
|
||||||
|
// bare link?
|
||||||
|
if ( $m[4] == $m[2] )
|
||||||
|
return '<a '.$m[1].' href="'.$m[2].'" '.$m[3].' class="comment-link">'.$m[4].'</a>';
|
||||||
|
else
|
||||||
|
return '<span title="'.$m[2].'" class="comment-link"><a '.$m[1].' href="'.$m[2].'" '.$m[3].' class="comment-link">'.$m[4].'</a></span>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_text_add_link_class( $comment_text ) {
|
||||||
|
|
||||||
|
return preg_replace_callback( '#<a ([^>]*)href="([^"]+)"([^>]*)>(.*?)</a>#i', 'akismet_text_add_link_callback', $comment_text );
|
||||||
|
}
|
||||||
|
|
||||||
|
add_filter('comment_text', 'akismet_text_add_link_class');
|
||||||
|
|
||||||
|
|
||||||
|
// WP 2.5+
|
||||||
|
function akismet_rightnow() {
|
||||||
|
global $submenu, $wp_db_version;
|
||||||
|
|
||||||
|
// clean_url was deprecated in WP 3.0
|
||||||
|
$esc_url = 'clean_url';
|
||||||
|
if ( function_exists( 'esc_url' ) )
|
||||||
|
$esc_url = 'esc_url';
|
||||||
|
|
||||||
|
if ( 8645 < $wp_db_version ) // 2.7
|
||||||
|
$link = 'edit-comments.php?comment_status=spam';
|
||||||
|
elseif ( isset( $submenu['edit-comments.php'] ) )
|
||||||
|
$link = 'edit-comments.php?page=akismet-admin';
|
||||||
|
else
|
||||||
|
$link = 'edit.php?page=akismet-admin';
|
||||||
|
|
||||||
|
if ( $count = get_option('akismet_spam_count') ) {
|
||||||
|
$intro = sprintf( _n(
|
||||||
|
'<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already. ',
|
||||||
|
'<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already. ',
|
||||||
|
$count
|
||||||
|
), 'http://akismet.com/', number_format_i18n( $count ) );
|
||||||
|
} else {
|
||||||
|
$intro = sprintf( __('<a href="%1$s">Akismet</a> blocks spam from getting to your blog. '), 'http://akismet.com/' );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $queue_count = akismet_spam_count() ) {
|
||||||
|
$queue_text = sprintf( _n(
|
||||||
|
'There\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
|
||||||
|
'There are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
|
||||||
|
$queue_count
|
||||||
|
), number_format_i18n( $queue_count ), $esc_url($link) );
|
||||||
|
} else {
|
||||||
|
$queue_text = sprintf( __( "There's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), $esc_url($link) );
|
||||||
|
}
|
||||||
|
|
||||||
|
$text = $intro . '<br />' . $queue_text;
|
||||||
|
echo "<p class='akismet-right-now'>$text</p>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('rightnow_end', 'akismet_rightnow');
|
||||||
|
|
||||||
|
|
||||||
|
// For WP >= 2.5
|
||||||
|
function akismet_check_for_spam_button($comment_status) {
|
||||||
|
if ( 'approved' == $comment_status )
|
||||||
|
return;
|
||||||
|
if ( function_exists('plugins_url') )
|
||||||
|
$link = 'admin.php?action=akismet_recheck_queue';
|
||||||
|
else
|
||||||
|
$link = 'edit-comments.php?page=akismet-admin&recheckqueue=true&noheader=true';
|
||||||
|
echo "</div><div class='alignleft'><a class='button-secondary checkforspam' href='$link'>" . __('Check for Spam') . "</a>";
|
||||||
|
}
|
||||||
|
add_action('manage_comments_nav', 'akismet_check_for_spam_button');
|
||||||
|
|
||||||
|
function akismet_submit_nonspam_comment ( $comment_id ) {
|
||||||
|
global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
|
||||||
|
$comment_id = (int) $comment_id;
|
||||||
|
|
||||||
|
$comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
|
||||||
|
if ( !$comment ) // it was deleted
|
||||||
|
return;
|
||||||
|
|
||||||
|
// use the original version stored in comment_meta if available
|
||||||
|
$as_submitted = get_comment_meta( $comment_id, 'akismet_as_submitted', true);
|
||||||
|
if ( $as_submitted && is_array($as_submitted) && isset($as_submitted['comment_content']) ) {
|
||||||
|
$comment = (object) array_merge( (array)$comment, $as_submitted );
|
||||||
|
}
|
||||||
|
|
||||||
|
$comment->blog = get_bloginfo('url');
|
||||||
|
$comment->blog_lang = get_locale();
|
||||||
|
$comment->blog_charset = get_option('blog_charset');
|
||||||
|
$comment->permalink = get_permalink($comment->comment_post_ID);
|
||||||
|
$comment->reporter_ip = $_SERVER['REMOTE_ADDR'];
|
||||||
|
if ( is_object($current_user) ) {
|
||||||
|
$comment->reporter = $current_user->user_login;
|
||||||
|
}
|
||||||
|
if ( is_object($current_site) ) {
|
||||||
|
$comment->site_domain = $current_site->domain;
|
||||||
|
}
|
||||||
|
|
||||||
|
$comment->user_role = '';
|
||||||
|
if ( isset( $comment->user_ID ) )
|
||||||
|
$comment->user_role = akismet_get_user_roles($comment->user_ID);
|
||||||
|
|
||||||
|
if ( akismet_test_mode() )
|
||||||
|
$comment->is_test = 'true';
|
||||||
|
|
||||||
|
$query_string = '';
|
||||||
|
foreach ( $comment as $key => $data )
|
||||||
|
$query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
|
||||||
|
|
||||||
|
$response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-ham", $akismet_api_port);
|
||||||
|
if ( $comment->reporter ) {
|
||||||
|
akismet_update_comment_history( $comment_id, sprintf( __('%s reported this comment as not spam'), $comment->reporter ), 'report-ham' );
|
||||||
|
update_comment_meta( $comment_id, 'akismet_user_result', 'false' );
|
||||||
|
update_comment_meta( $comment_id, 'akismet_user', $comment->reporter );
|
||||||
|
}
|
||||||
|
|
||||||
|
do_action('akismet_submit_nonspam_comment', $comment_id, $response[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_submit_spam_comment ( $comment_id ) {
|
||||||
|
global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
|
||||||
|
$comment_id = (int) $comment_id;
|
||||||
|
|
||||||
|
$comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
|
||||||
|
if ( !$comment ) // it was deleted
|
||||||
|
return;
|
||||||
|
if ( 'spam' != $comment->comment_approved )
|
||||||
|
return;
|
||||||
|
|
||||||
|
// use the original version stored in comment_meta if available
|
||||||
|
$as_submitted = get_comment_meta( $comment_id, 'akismet_as_submitted', true);
|
||||||
|
if ( $as_submitted && is_array($as_submitted) && isset($as_submitted['comment_content']) ) {
|
||||||
|
$comment = (object) array_merge( (array)$comment, $as_submitted );
|
||||||
|
}
|
||||||
|
|
||||||
|
$comment->blog = get_bloginfo('url');
|
||||||
|
$comment->blog_lang = get_locale();
|
||||||
|
$comment->blog_charset = get_option('blog_charset');
|
||||||
|
$comment->permalink = get_permalink($comment->comment_post_ID);
|
||||||
|
$comment->reporter_ip = $_SERVER['REMOTE_ADDR'];
|
||||||
|
if ( is_object($current_user) ) {
|
||||||
|
$comment->reporter = $current_user->user_login;
|
||||||
|
}
|
||||||
|
if ( is_object($current_site) ) {
|
||||||
|
$comment->site_domain = $current_site->domain;
|
||||||
|
}
|
||||||
|
|
||||||
|
$comment->user_role = '';
|
||||||
|
if ( isset( $comment->user_ID ) )
|
||||||
|
$comment->user_role = akismet_get_user_roles($comment->user_ID);
|
||||||
|
|
||||||
|
if ( akismet_test_mode() )
|
||||||
|
$comment->is_test = 'true';
|
||||||
|
|
||||||
|
$query_string = '';
|
||||||
|
foreach ( $comment as $key => $data )
|
||||||
|
$query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
|
||||||
|
|
||||||
|
$response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-spam", $akismet_api_port);
|
||||||
|
if ( $comment->reporter ) {
|
||||||
|
akismet_update_comment_history( $comment_id, sprintf( __('%s reported this comment as spam'), $comment->reporter ), 'report-spam' );
|
||||||
|
update_comment_meta( $comment_id, 'akismet_user_result', 'true' );
|
||||||
|
update_comment_meta( $comment_id, 'akismet_user', $comment->reporter );
|
||||||
|
}
|
||||||
|
do_action('akismet_submit_spam_comment', $comment_id, $response[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// For WP 2.7+
|
||||||
|
function akismet_transition_comment_status( $new_status, $old_status, $comment ) {
|
||||||
|
if ( $new_status == $old_status )
|
||||||
|
return;
|
||||||
|
|
||||||
|
# we don't need to record a history item for deleted comments
|
||||||
|
if ( $new_status == 'delete' )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if ( !is_admin() )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) && !current_user_can( 'moderate_comments' ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if ( defined('WP_IMPORTING') && WP_IMPORTING == true )
|
||||||
|
return;
|
||||||
|
|
||||||
|
global $current_user;
|
||||||
|
$reporter = '';
|
||||||
|
if ( is_object( $current_user ) )
|
||||||
|
$reporter = $current_user->user_login;
|
||||||
|
|
||||||
|
// Assumption alert:
|
||||||
|
// We want to submit comments to Akismet only when a moderator explicitly spams or approves it - not if the status
|
||||||
|
// is changed automatically by another plugin. Unfortunately WordPress doesn't provide an unambiguous way to
|
||||||
|
// determine why the transition_comment_status action was triggered. And there are several different ways by which
|
||||||
|
// to spam and unspam comments: bulk actions, ajax, links in moderation emails, the dashboard, and perhaps others.
|
||||||
|
// We'll assume that this is an explicit user action if POST or GET has an 'action' key.
|
||||||
|
if ( isset($_POST['action']) || isset($_GET['action']) ) {
|
||||||
|
if ( $new_status == 'spam' && ( $old_status == 'approved' || $old_status == 'unapproved' || !$old_status ) ) {
|
||||||
|
return akismet_submit_spam_comment( $comment->comment_ID );
|
||||||
|
} elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) {
|
||||||
|
return akismet_submit_nonspam_comment( $comment->comment_ID );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( !get_comment_meta( $comment->comment_ID, 'akismet_rechecking' ) )
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, sprintf( __('%s changed the comment status to %s'), $reporter, $new_status ), 'status-' . $new_status );
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'transition_comment_status', 'akismet_transition_comment_status', 10, 3 );
|
||||||
|
|
||||||
|
// Total spam in queue
|
||||||
|
// get_option( 'akismet_spam_count' ) is the total caught ever
|
||||||
|
function akismet_spam_count( $type = false ) {
|
||||||
|
global $wpdb;
|
||||||
|
|
||||||
|
if ( !$type ) { // total
|
||||||
|
$count = wp_cache_get( 'akismet_spam_count', 'widget' );
|
||||||
|
if ( false === $count ) {
|
||||||
|
if ( function_exists('wp_count_comments') ) {
|
||||||
|
$count = wp_count_comments();
|
||||||
|
$count = $count->spam;
|
||||||
|
} else {
|
||||||
|
$count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'");
|
||||||
|
}
|
||||||
|
wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
|
||||||
|
}
|
||||||
|
return $count;
|
||||||
|
} elseif ( 'comments' == $type || 'comment' == $type ) { // comments
|
||||||
|
$type = '';
|
||||||
|
} else { // pingback, trackback, ...
|
||||||
|
$type = $wpdb->escape( $type );
|
||||||
|
}
|
||||||
|
|
||||||
|
return (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type'");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function akismet_recheck_queue() {
|
||||||
|
global $wpdb, $akismet_api_host, $akismet_api_port;
|
||||||
|
|
||||||
|
if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
|
||||||
|
foreach ( (array) $moderation as $c ) {
|
||||||
|
$c['user_ip'] = $c['comment_author_IP'];
|
||||||
|
$c['user_agent'] = $c['comment_agent'];
|
||||||
|
$c['referrer'] = '';
|
||||||
|
$c['blog'] = get_bloginfo('url');
|
||||||
|
$c['blog_lang'] = get_locale();
|
||||||
|
$c['blog_charset'] = get_option('blog_charset');
|
||||||
|
$c['permalink'] = get_permalink($c['comment_post_ID']);
|
||||||
|
|
||||||
|
$c['user_role'] = '';
|
||||||
|
if ( isset( $c['user_ID'] ) )
|
||||||
|
$c['user_role'] = akismet_get_user_roles($c['user_ID']);
|
||||||
|
|
||||||
|
if ( akismet_test_mode() )
|
||||||
|
$c['is_test'] = 'true';
|
||||||
|
|
||||||
|
$id = (int) $c['comment_ID'];
|
||||||
|
|
||||||
|
$query_string = '';
|
||||||
|
foreach ( $c as $key => $data )
|
||||||
|
$query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
|
||||||
|
|
||||||
|
$response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
|
||||||
|
if ( 'true' == $response[1] ) {
|
||||||
|
wp_set_comment_status($c['comment_ID'], 'spam');
|
||||||
|
update_comment_meta( $c['comment_ID'], 'akismet_result', 'true' );
|
||||||
|
akismet_update_comment_history( $c['comment_ID'], __('Akismet re-checked and caught this comment as spam'), 'check-spam' );
|
||||||
|
|
||||||
|
} elseif ( 'false' == $response[1] ) {
|
||||||
|
update_comment_meta( $c['comment_ID'], 'akismet_result', 'false' );
|
||||||
|
akismet_update_comment_history( $c['comment_ID'], __('Akismet re-checked and cleared this comment'), 'check-ham' );
|
||||||
|
// abnormal result: error
|
||||||
|
} else {
|
||||||
|
update_comment_meta( $c['comment_ID'], 'akismet_result', 'error' );
|
||||||
|
akismet_update_comment_history( $c['comment_ID'], sprintf( __('Akismet was unable to re-check this comment (response: %s)'), $response[1]), 'check-error' );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
wp_redirect( $_SERVER['HTTP_REFERER'] );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('admin_action_akismet_recheck_queue', 'akismet_recheck_queue');
|
||||||
|
|
||||||
|
// Check connectivity between the WordPress blog and Akismet's servers.
|
||||||
|
// Returns an associative array of server IP addresses, where the key is the IP address, and value is true (available) or false (unable to connect).
|
||||||
|
function akismet_check_server_connectivity() {
|
||||||
|
global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
|
||||||
|
|
||||||
|
$test_host = 'rest.akismet.com';
|
||||||
|
|
||||||
|
// Some web hosts may disable one or both functions
|
||||||
|
if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') )
|
||||||
|
return array();
|
||||||
|
|
||||||
|
$ips = gethostbynamel($test_host);
|
||||||
|
if ( !$ips || !is_array($ips) || !count($ips) )
|
||||||
|
return array();
|
||||||
|
|
||||||
|
$servers = array();
|
||||||
|
foreach ( $ips as $ip ) {
|
||||||
|
$response = akismet_verify_key( akismet_get_key(), $ip );
|
||||||
|
// even if the key is invalid, at least we know we have connectivity
|
||||||
|
if ( $response == 'valid' || $response == 'invalid' )
|
||||||
|
$servers[$ip] = true;
|
||||||
|
else
|
||||||
|
$servers[$ip] = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $servers;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check the server connectivity and store the results in an option.
|
||||||
|
// Cached results will be used if not older than the specified timeout in seconds; use $cache_timeout = 0 to force an update.
|
||||||
|
// Returns the same associative array as akismet_check_server_connectivity()
|
||||||
|
function akismet_get_server_connectivity( $cache_timeout = 86400 ) {
|
||||||
|
$servers = get_option('akismet_available_servers');
|
||||||
|
if ( (time() - get_option('akismet_connectivity_time') < $cache_timeout) && $servers !== false )
|
||||||
|
return $servers;
|
||||||
|
|
||||||
|
// There's a race condition here but the effect is harmless.
|
||||||
|
$servers = akismet_check_server_connectivity();
|
||||||
|
update_option('akismet_available_servers', $servers);
|
||||||
|
update_option('akismet_connectivity_time', time());
|
||||||
|
return $servers;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns true if server connectivity was OK at the last check, false if there was a problem that needs to be fixed.
|
||||||
|
function akismet_server_connectivity_ok() {
|
||||||
|
// skip the check on WPMU because the status page is hidden
|
||||||
|
global $wpcom_api_key;
|
||||||
|
if ( $wpcom_api_key )
|
||||||
|
return true;
|
||||||
|
$servers = akismet_get_server_connectivity();
|
||||||
|
return !( empty($servers) || !count($servers) || count( array_filter($servers) ) < count($servers) );
|
||||||
|
}
|
||||||
|
|
||||||
7
src/wp-content/plugins/akismet/akismet.css
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#submitted-on { position: relative; }
|
||||||
|
#the-comment-list .author .akismet-user-comment-count { display: inline; }
|
||||||
|
#dashboard_recent_comments .akismet-status { display: none; } /* never show the flagged by text on the dashboard */
|
||||||
|
.akismet-status { float: right; }
|
||||||
|
.akismet-status a { color: #AAA; font-style: italic; }
|
||||||
|
span.comment-link a { text-decoration: underline; }
|
||||||
|
span.comment-link:after { content: " " attr(title) " "; color: #aaa; text-decoration: none; }
|
||||||
BIN
src/wp-content/plugins/akismet/akismet.gif
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
10
src/wp-content/plugins/akismet/akismet.js
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
jQuery(document).ready(function () {
|
||||||
|
jQuery('.akismet-status').each(function () {
|
||||||
|
var thisId = jQuery(this).attr('commentid');
|
||||||
|
jQuery(this).prependTo('#comment-' + thisId + ' .column-comment div:first-child');
|
||||||
|
});
|
||||||
|
jQuery('.akismet-user-comment-count').each(function () {
|
||||||
|
var thisId = jQuery(this).attr('commentid');
|
||||||
|
jQuery(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
512
src/wp-content/plugins/akismet/akismet.php
Normal file
@ -0,0 +1,512 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @package Akismet
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
Plugin Name: Akismet
|
||||||
|
Plugin URI: http://akismet.com/
|
||||||
|
Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/?return=true">Sign up for an Akismet API key</a>, and 3) Go to your <a href="plugins.php?page=akismet-key-config">Akismet configuration</a> page, and save your API key.
|
||||||
|
Version: 2.5.3
|
||||||
|
Author: Automattic
|
||||||
|
Author URI: http://automattic.com/wordpress-plugins/
|
||||||
|
License: GPLv2 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
define('AKISMET_VERSION', '2.5.3');
|
||||||
|
define('AKISMET_PLUGIN_URL', plugin_dir_url( __FILE__ ));
|
||||||
|
|
||||||
|
/** If you hardcode a WP.com API key here, all key config screens will be hidden */
|
||||||
|
if ( defined('WPCOM_API_KEY') )
|
||||||
|
$wpcom_api_key = constant('WPCOM_API_KEY');
|
||||||
|
else
|
||||||
|
$wpcom_api_key = '';
|
||||||
|
|
||||||
|
// Make sure we don't expose any info if called directly
|
||||||
|
if ( !function_exists( 'add_action' ) ) {
|
||||||
|
echo "Hi there! I'm just a plugin, not much I can do when called directly.";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset($wp_db_version) && $wp_db_version <= 9872 )
|
||||||
|
include_once dirname( __FILE__ ) . '/legacy.php';
|
||||||
|
|
||||||
|
include_once dirname( __FILE__ ) . '/widget.php';
|
||||||
|
|
||||||
|
if ( is_admin() )
|
||||||
|
require_once dirname( __FILE__ ) . '/admin.php';
|
||||||
|
|
||||||
|
function akismet_init() {
|
||||||
|
global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
|
||||||
|
|
||||||
|
if ( $wpcom_api_key )
|
||||||
|
$akismet_api_host = $wpcom_api_key . '.rest.akismet.com';
|
||||||
|
else
|
||||||
|
$akismet_api_host = get_option('wordpress_api_key') . '.rest.akismet.com';
|
||||||
|
|
||||||
|
$akismet_api_port = 80;
|
||||||
|
}
|
||||||
|
add_action('init', 'akismet_init');
|
||||||
|
|
||||||
|
function akismet_get_key() {
|
||||||
|
global $wpcom_api_key;
|
||||||
|
if ( !empty($wpcom_api_key) )
|
||||||
|
return $wpcom_api_key;
|
||||||
|
return get_option('wordpress_api_key');
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_verify_key( $key, $ip = null ) {
|
||||||
|
global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
|
||||||
|
$blog = urlencode( get_option('home') );
|
||||||
|
if ( $wpcom_api_key )
|
||||||
|
$key = $wpcom_api_key;
|
||||||
|
$response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port, $ip);
|
||||||
|
if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
|
||||||
|
return 'failed';
|
||||||
|
return $response[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we're in debug or test modes, use a reduced service level so as not to polute training or stats data
|
||||||
|
function akismet_test_mode() {
|
||||||
|
if ( defined('AKISMET_TEST_MODE') && AKISMET_TEST_MODE )
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// return a comma-separated list of role names for the given user
|
||||||
|
function akismet_get_user_roles($user_id ) {
|
||||||
|
$roles = false;
|
||||||
|
|
||||||
|
if ( !class_exists('WP_User') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if ( $user_id > 0 ) {
|
||||||
|
$comment_user = new WP_User($user_id);
|
||||||
|
if ( isset($comment_user->roles) )
|
||||||
|
$roles = join(',', $comment_user->roles);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( is_multisite() && is_super_admin( $user_id ) ) {
|
||||||
|
if ( empty( $roles ) ) {
|
||||||
|
$roles = 'super_admin';
|
||||||
|
} else {
|
||||||
|
$comment_user->roles[] = 'super_admin';
|
||||||
|
$roles = join( ',', $comment_user->roles );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $roles;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns array with headers in $response[0] and body in $response[1]
|
||||||
|
function akismet_http_post($request, $host, $path, $port = 80, $ip=null) {
|
||||||
|
global $wp_version;
|
||||||
|
|
||||||
|
$akismet_ua = "WordPress/{$wp_version} | ";
|
||||||
|
$akismet_ua .= 'Akismet/' . constant( 'AKISMET_VERSION' );
|
||||||
|
|
||||||
|
$content_length = strlen( $request );
|
||||||
|
|
||||||
|
$http_host = $host;
|
||||||
|
// use a specific IP if provided
|
||||||
|
// needed by akismet_check_server_connectivity()
|
||||||
|
if ( $ip && long2ip( ip2long( $ip ) ) ) {
|
||||||
|
$http_host = $ip;
|
||||||
|
} else {
|
||||||
|
$http_host = $host;
|
||||||
|
}
|
||||||
|
|
||||||
|
// use the WP HTTP class if it is available
|
||||||
|
if ( function_exists( 'wp_remote_post' ) ) {
|
||||||
|
$http_args = array(
|
||||||
|
'body' => $request,
|
||||||
|
'headers' => array(
|
||||||
|
'Content-Type' => 'application/x-www-form-urlencoded; ' .
|
||||||
|
'charset=' . get_option( 'blog_charset' ),
|
||||||
|
'Host' => $host,
|
||||||
|
'User-Agent' => $akismet_ua
|
||||||
|
),
|
||||||
|
'httpversion' => '1.0',
|
||||||
|
'timeout' => 15
|
||||||
|
);
|
||||||
|
$akismet_url = "http://{$http_host}{$path}";
|
||||||
|
$response = wp_remote_post( $akismet_url, $http_args );
|
||||||
|
if ( is_wp_error( $response ) )
|
||||||
|
return '';
|
||||||
|
|
||||||
|
return array( $response['headers'], $response['body'] );
|
||||||
|
} else {
|
||||||
|
$http_request = "POST $path HTTP/1.0\r\n";
|
||||||
|
$http_request .= "Host: $host\r\n";
|
||||||
|
$http_request .= 'Content-Type: application/x-www-form-urlencoded; charset=' . get_option('blog_charset') . "\r\n";
|
||||||
|
$http_request .= "Content-Length: {$content_length}\r\n";
|
||||||
|
$http_request .= "User-Agent: {$akismet_ua}\r\n";
|
||||||
|
$http_request .= "\r\n";
|
||||||
|
$http_request .= $request;
|
||||||
|
|
||||||
|
$response = '';
|
||||||
|
if( false != ( $fs = @fsockopen( $http_host, $port, $errno, $errstr, 10 ) ) ) {
|
||||||
|
fwrite( $fs, $http_request );
|
||||||
|
|
||||||
|
while ( !feof( $fs ) )
|
||||||
|
$response .= fgets( $fs, 1160 ); // One TCP-IP packet
|
||||||
|
fclose( $fs );
|
||||||
|
$response = explode( "\r\n\r\n", $response, 2 );
|
||||||
|
}
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// filter handler used to return a spam result to pre_comment_approved
|
||||||
|
function akismet_result_spam( $approved ) {
|
||||||
|
// bump the counter here instead of when the filter is added to reduce the possibility of overcounting
|
||||||
|
if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
|
||||||
|
update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
|
||||||
|
// this is a one-shot deal
|
||||||
|
remove_filter( 'pre_comment_approved', 'akismet_result_spam' );
|
||||||
|
return 'spam';
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_result_hold( $approved ) {
|
||||||
|
// once only
|
||||||
|
remove_filter( 'pre_comment_approved', 'akismet_result_hold' );
|
||||||
|
return '0';
|
||||||
|
}
|
||||||
|
|
||||||
|
// how many approved comments does this author have?
|
||||||
|
function akismet_get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) {
|
||||||
|
global $wpdb;
|
||||||
|
|
||||||
|
if ( !empty($user_id) )
|
||||||
|
return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->comments WHERE user_id = %d AND comment_approved = 1", $user_id ) );
|
||||||
|
|
||||||
|
if ( !empty($comment_author_email) )
|
||||||
|
return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_author_email = %s AND comment_author = %s AND comment_author_url = %s AND comment_approved = 1", $comment_author_email, $comment_author, $comment_author_url ) );
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_microtime() {
|
||||||
|
$mtime = explode( ' ', microtime() );
|
||||||
|
return $mtime[1] + $mtime[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
// log an event for a given comment, storing it in comment_meta
|
||||||
|
function akismet_update_comment_history( $comment_id, $message, $event=null ) {
|
||||||
|
global $current_user;
|
||||||
|
|
||||||
|
// failsafe for old WP versions
|
||||||
|
if ( !function_exists('add_comment_meta') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$user = '';
|
||||||
|
if ( is_object($current_user) && isset($current_user->user_login) )
|
||||||
|
$user = $current_user->user_login;
|
||||||
|
|
||||||
|
$event = array(
|
||||||
|
'time' => akismet_microtime(),
|
||||||
|
'message' => $message,
|
||||||
|
'event' => $event,
|
||||||
|
'user' => $user,
|
||||||
|
);
|
||||||
|
|
||||||
|
// $unique = false so as to allow multiple values per comment
|
||||||
|
$r = add_comment_meta( $comment_id, 'akismet_history', $event, false );
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the full comment history for a given comment, as an array in reverse chronological order
|
||||||
|
function akismet_get_comment_history( $comment_id ) {
|
||||||
|
|
||||||
|
// failsafe for old WP versions
|
||||||
|
if ( !function_exists('add_comment_meta') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$history = get_comment_meta( $comment_id, 'akismet_history', false );
|
||||||
|
usort( $history, 'akismet_cmp_time' );
|
||||||
|
return $history;
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_cmp_time( $a, $b ) {
|
||||||
|
return $a['time'] > $b['time'] ? -1 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// this fires on wp_insert_comment. we can't update comment_meta when akismet_auto_check_comment() runs
|
||||||
|
// because we don't know the comment ID at that point.
|
||||||
|
function akismet_auto_check_update_meta( $id, $comment ) {
|
||||||
|
global $akismet_last_comment;
|
||||||
|
|
||||||
|
// failsafe for old WP versions
|
||||||
|
if ( !function_exists('add_comment_meta') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// wp_insert_comment() might be called in other contexts, so make sure this is the same comment
|
||||||
|
// as was checked by akismet_auto_check_comment
|
||||||
|
if ( is_object($comment) && !empty($akismet_last_comment) && is_array($akismet_last_comment) ) {
|
||||||
|
if ( intval($akismet_last_comment['comment_post_ID']) == intval($comment->comment_post_ID)
|
||||||
|
&& $akismet_last_comment['comment_author'] == $comment->comment_author
|
||||||
|
&& $akismet_last_comment['comment_author_email'] == $comment->comment_author_email ) {
|
||||||
|
// normal result: true or false
|
||||||
|
if ( $akismet_last_comment['akismet_result'] == 'true' ) {
|
||||||
|
update_comment_meta( $comment->comment_ID, 'akismet_result', 'true' );
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, __('Akismet caught this comment as spam'), 'check-spam' );
|
||||||
|
if ( $comment->comment_approved != 'spam' )
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, sprintf( __('Comment status was changed to %s'), $comment->comment_approved), 'status-changed'.$comment->comment_approved );
|
||||||
|
} elseif ( $akismet_last_comment['akismet_result'] == 'false' ) {
|
||||||
|
update_comment_meta( $comment->comment_ID, 'akismet_result', 'false' );
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, __('Akismet cleared this comment'), 'check-ham' );
|
||||||
|
if ( $comment->comment_approved == 'spam' ) {
|
||||||
|
if ( wp_blacklist_check($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent) )
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, __('Comment was caught by wp_blacklist_check'), 'wp-blacklisted' );
|
||||||
|
else
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, sprintf( __('Comment status was changed to %s'), $comment->comment_approved), 'status-changed-'.$comment->comment_approved );
|
||||||
|
}
|
||||||
|
// abnormal result: error
|
||||||
|
} else {
|
||||||
|
update_comment_meta( $comment->comment_ID, 'akismet_error', time() );
|
||||||
|
akismet_update_comment_history( $comment->comment_ID, sprintf( __('Akismet was unable to check this comment (response: %s), will automatically retry again later.'), $akismet_last_comment['akismet_result']), 'check-error' );
|
||||||
|
}
|
||||||
|
|
||||||
|
// record the complete original data as submitted for checking
|
||||||
|
if ( isset($akismet_last_comment['comment_as_submitted']) )
|
||||||
|
update_comment_meta( $comment->comment_ID, 'akismet_as_submitted', $akismet_last_comment['comment_as_submitted'] );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'wp_insert_comment', 'akismet_auto_check_update_meta', 10, 2 );
|
||||||
|
|
||||||
|
|
||||||
|
function akismet_auto_check_comment( $commentdata ) {
|
||||||
|
global $akismet_api_host, $akismet_api_port, $akismet_last_comment;
|
||||||
|
|
||||||
|
$comment = $commentdata;
|
||||||
|
$comment['user_ip'] = $_SERVER['REMOTE_ADDR'];
|
||||||
|
$comment['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
|
||||||
|
$comment['referrer'] = $_SERVER['HTTP_REFERER'];
|
||||||
|
$comment['blog'] = get_option('home');
|
||||||
|
$comment['blog_lang'] = get_locale();
|
||||||
|
$comment['blog_charset'] = get_option('blog_charset');
|
||||||
|
$comment['permalink'] = get_permalink($comment['comment_post_ID']);
|
||||||
|
|
||||||
|
$comment['user_role'] = akismet_get_user_roles($comment['user_ID']);
|
||||||
|
|
||||||
|
$akismet_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) );
|
||||||
|
$comment['akismet_comment_nonce'] = 'inactive';
|
||||||
|
if ( $akismet_nonce_option == 'true' || $akismet_nonce_option == '' ) {
|
||||||
|
$comment['akismet_comment_nonce'] = 'failed';
|
||||||
|
if ( isset( $_POST['akismet_comment_nonce'] ) && wp_verify_nonce( $_POST['akismet_comment_nonce'], 'akismet_comment_nonce_' . $comment['comment_post_ID'] ) )
|
||||||
|
$comment['akismet_comment_nonce'] = 'passed';
|
||||||
|
|
||||||
|
// comment reply in wp-admin
|
||||||
|
if ( isset( $_POST['_ajax_nonce-replyto-comment'] ) && check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' ) )
|
||||||
|
$comment['akismet_comment_nonce'] = 'passed';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( akismet_test_mode() )
|
||||||
|
$comment['is_test'] = 'true';
|
||||||
|
|
||||||
|
foreach ($_POST as $key => $value ) {
|
||||||
|
if ( is_string($value) )
|
||||||
|
$comment["POST_{$key}"] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$ignore = array( 'HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW' );
|
||||||
|
|
||||||
|
foreach ( $_SERVER as $key => $value ) {
|
||||||
|
if ( !in_array( $key, $ignore ) && is_string($value) )
|
||||||
|
$comment["$key"] = $value;
|
||||||
|
else
|
||||||
|
$comment["$key"] = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
$query_string = '';
|
||||||
|
foreach ( $comment as $key => $data )
|
||||||
|
$query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
|
||||||
|
|
||||||
|
$commentdata['comment_as_submitted'] = $comment;
|
||||||
|
|
||||||
|
$response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
|
||||||
|
$commentdata['akismet_result'] = $response[1];
|
||||||
|
if ( 'true' == $response[1] ) {
|
||||||
|
// akismet_spam_count will be incremented later by akismet_result_spam()
|
||||||
|
add_filter('pre_comment_approved', 'akismet_result_spam');
|
||||||
|
|
||||||
|
do_action( 'akismet_spam_caught' );
|
||||||
|
|
||||||
|
$post = get_post( $comment['comment_post_ID'] );
|
||||||
|
$last_updated = strtotime( $post->post_modified_gmt );
|
||||||
|
$diff = time() - $last_updated;
|
||||||
|
$diff = $diff / 86400;
|
||||||
|
|
||||||
|
if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' && empty($comment['user_ID']) ) {
|
||||||
|
// akismet_result_spam() won't be called so bump the counter here
|
||||||
|
if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
|
||||||
|
update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
|
||||||
|
wp_redirect( $_SERVER['HTTP_REFERER'] );
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// if the response is neither true nor false, hold the comment for moderation and schedule a recheck
|
||||||
|
if ( 'true' != $response[1] && 'false' != $response[1] ) {
|
||||||
|
add_filter('pre_comment_approved', 'akismet_result_hold');
|
||||||
|
wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( function_exists('wp_next_scheduled') && function_exists('wp_schedule_event') ) {
|
||||||
|
// WP 2.1+: delete old comments daily
|
||||||
|
if ( !wp_next_scheduled('akismet_scheduled_delete') )
|
||||||
|
wp_schedule_event(time(), 'daily', 'akismet_scheduled_delete');
|
||||||
|
} elseif ( (mt_rand(1, 10) == 3) ) {
|
||||||
|
// WP 2.0: run this one time in ten
|
||||||
|
akismet_delete_old();
|
||||||
|
}
|
||||||
|
$akismet_last_comment = $commentdata;
|
||||||
|
return $commentdata;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
|
||||||
|
|
||||||
|
function akismet_delete_old() {
|
||||||
|
global $wpdb;
|
||||||
|
$now_gmt = current_time('mysql', 1);
|
||||||
|
$comment_ids = $wpdb->get_col("SELECT comment_id FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
|
||||||
|
if ( empty( $comment_ids ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$comma_comment_ids = implode( ', ', array_map('intval', $comment_ids) );
|
||||||
|
|
||||||
|
do_action( 'delete_comment', $comment_ids );
|
||||||
|
$wpdb->query("DELETE FROM $wpdb->comments WHERE comment_id IN ( $comma_comment_ids )");
|
||||||
|
$wpdb->query("DELETE FROM $wpdb->commentmeta WHERE comment_id IN ( $comma_comment_ids )");
|
||||||
|
clean_comment_cache( $comment_ids );
|
||||||
|
$n = mt_rand(1, 5000);
|
||||||
|
if ( apply_filters('akismet_optimize_table', ($n == 11)) ) // lucky number
|
||||||
|
$wpdb->query("OPTIMIZE TABLE $wpdb->comments");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('akismet_scheduled_delete', 'akismet_delete_old');
|
||||||
|
|
||||||
|
function akismet_check_db_comment( $id, $recheck_reason = 'recheck_queue' ) {
|
||||||
|
global $wpdb, $akismet_api_host, $akismet_api_port;
|
||||||
|
|
||||||
|
$id = (int) $id;
|
||||||
|
$c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
|
||||||
|
if ( !$c )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$c['user_ip'] = $c['comment_author_IP'];
|
||||||
|
$c['user_agent'] = $c['comment_agent'];
|
||||||
|
$c['referrer'] = '';
|
||||||
|
$c['blog'] = get_option('home');
|
||||||
|
$c['blog_lang'] = get_locale();
|
||||||
|
$c['blog_charset'] = get_option('blog_charset');
|
||||||
|
$c['permalink'] = get_permalink($c['comment_post_ID']);
|
||||||
|
$id = $c['comment_ID'];
|
||||||
|
if ( akismet_test_mode() )
|
||||||
|
$c['is_test'] = 'true';
|
||||||
|
$c['recheck_reason'] = $recheck_reason;
|
||||||
|
|
||||||
|
$query_string = '';
|
||||||
|
foreach ( $c as $key => $data )
|
||||||
|
$query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
|
||||||
|
|
||||||
|
$response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
|
||||||
|
return $response[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_cron_recheck() {
|
||||||
|
global $wpdb;
|
||||||
|
|
||||||
|
delete_option('akismet_available_servers');
|
||||||
|
|
||||||
|
$comment_errors = $wpdb->get_col( "
|
||||||
|
SELECT comment_id
|
||||||
|
FROM {$wpdb->prefix}commentmeta
|
||||||
|
WHERE meta_key = 'akismet_error'
|
||||||
|
LIMIT 100
|
||||||
|
" );
|
||||||
|
|
||||||
|
foreach ( (array) $comment_errors as $comment_id ) {
|
||||||
|
// if the comment no longer exists, remove the meta entry from the queue to avoid getting stuck
|
||||||
|
if ( !get_comment( $comment_id ) ) {
|
||||||
|
delete_comment_meta( $comment_id, 'akismet_error' );
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_comment_meta( $comment_id, 'akismet_rechecking', true );
|
||||||
|
$status = akismet_check_db_comment( $comment_id, 'retry' );
|
||||||
|
|
||||||
|
$msg = '';
|
||||||
|
if ( $status == 'true' ) {
|
||||||
|
$msg = __( 'Akismet caught this comment as spam during an automatic retry.' );
|
||||||
|
} elseif ( $status == 'false' ) {
|
||||||
|
$msg = __( 'Akismet cleared this comment during an automatic retry.' );
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we got back a legit response then update the comment history
|
||||||
|
// other wise just bail now and try again later. No point in
|
||||||
|
// re-trying all the comments once we hit one failure.
|
||||||
|
if ( !empty( $msg ) ) {
|
||||||
|
delete_comment_meta( $comment_id, 'akismet_error' );
|
||||||
|
akismet_update_comment_history( $comment_id, $msg, 'cron-retry' );
|
||||||
|
update_comment_meta( $comment_id, 'akismet_result', $status );
|
||||||
|
// make sure the comment status is still pending. if it isn't, that means the user has already moved it elsewhere.
|
||||||
|
$comment = get_comment( $comment_id );
|
||||||
|
if ( $comment && 'unapproved' == wp_get_comment_status( $comment_id ) ) {
|
||||||
|
if ( $status == 'true' ) {
|
||||||
|
wp_spam_comment( $comment_id );
|
||||||
|
} elseif ( $status == 'false' ) {
|
||||||
|
// comment is good, but it's still in the pending queue. depending on the moderation settings
|
||||||
|
// we may need to change it to approved.
|
||||||
|
if ( check_comment($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent, $comment->comment_type) )
|
||||||
|
wp_set_comment_status( $comment_id, 1 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
delete_comment_meta( $comment_id, 'akismet_rechecking' );
|
||||||
|
wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$remaining = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->commentmeta WHERE meta_key = 'akismet_error'" ) );
|
||||||
|
if ( $remaining && !wp_next_scheduled('akismet_schedule_cron_recheck') ) {
|
||||||
|
wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
add_action( 'akismet_schedule_cron_recheck', 'akismet_cron_recheck' );
|
||||||
|
|
||||||
|
function akismet_add_comment_nonce( $post_id ) {
|
||||||
|
echo '<p style="display: none;">';
|
||||||
|
wp_nonce_field( 'akismet_comment_nonce_' . $post_id, 'akismet_comment_nonce', FALSE );
|
||||||
|
echo '</p>';
|
||||||
|
}
|
||||||
|
|
||||||
|
$akismet_comment_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) );
|
||||||
|
|
||||||
|
if ( $akismet_comment_nonce_option == 'true' || $akismet_comment_nonce_option == '' )
|
||||||
|
add_action( 'comment_form', 'akismet_add_comment_nonce' );
|
||||||
|
|
||||||
|
if ( '3.0.5' == $wp_version ) {
|
||||||
|
remove_filter( 'comment_text', 'wp_kses_data' );
|
||||||
|
if ( is_admin() )
|
||||||
|
add_filter( 'comment_text', 'wp_kses_post' );
|
||||||
|
}
|
||||||
396
src/wp-content/plugins/akismet/legacy.php
Normal file
@ -0,0 +1,396 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
function akismet_spam_comments( $type = false, $page = 1, $per_page = 50 ) {
|
||||||
|
global $wpdb;
|
||||||
|
|
||||||
|
$page = (int) $page;
|
||||||
|
if ( $page < 2 )
|
||||||
|
$page = 1;
|
||||||
|
|
||||||
|
$per_page = (int) $per_page;
|
||||||
|
if ( $per_page < 1 )
|
||||||
|
$per_page = 50;
|
||||||
|
|
||||||
|
$start = ( $page - 1 ) * $per_page;
|
||||||
|
$end = $start + $per_page;
|
||||||
|
|
||||||
|
if ( $type ) {
|
||||||
|
if ( 'comments' == $type || 'comment' == $type )
|
||||||
|
$type = '';
|
||||||
|
else
|
||||||
|
$type = $wpdb->escape( $type );
|
||||||
|
return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type' ORDER BY comment_date DESC LIMIT $start, $end");
|
||||||
|
}
|
||||||
|
|
||||||
|
// All
|
||||||
|
return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' ORDER BY comment_date DESC LIMIT $start, $end");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Totals for each comment type
|
||||||
|
// returns array( type => count, ... )
|
||||||
|
function akismet_spam_totals() {
|
||||||
|
global $wpdb;
|
||||||
|
$totals = $wpdb->get_results( "SELECT comment_type, COUNT(*) AS cc FROM $wpdb->comments WHERE comment_approved = 'spam' GROUP BY comment_type" );
|
||||||
|
$return = array();
|
||||||
|
foreach ( $totals as $total )
|
||||||
|
$return[$total->comment_type ? $total->comment_type : 'comment'] = $total->cc;
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_manage_page() {
|
||||||
|
global $wpdb, $submenu, $wp_db_version;
|
||||||
|
|
||||||
|
// WP 2.7 has its own spam management page
|
||||||
|
if ( 8645 <= $wp_db_version )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
|
||||||
|
if ( isset( $submenu['edit-comments.php'] ) )
|
||||||
|
add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught' );
|
||||||
|
elseif ( function_exists('add_management_page') )
|
||||||
|
add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
|
||||||
|
}
|
||||||
|
|
||||||
|
function akismet_caught() {
|
||||||
|
global $wpdb, $comment, $akismet_caught, $akismet_nonce;
|
||||||
|
|
||||||
|
akismet_recheck_queue();
|
||||||
|
if (isset($_POST['submit']) && 'recover' == $_POST['action'] && ! empty($_POST['not_spam'])) {
|
||||||
|
check_admin_referer( $akismet_nonce );
|
||||||
|
if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
|
||||||
|
die(__('You do not have sufficient permission to moderate comments.'));
|
||||||
|
|
||||||
|
$i = 0;
|
||||||
|
foreach ($_POST['not_spam'] as $comment):
|
||||||
|
$comment = (int) $comment;
|
||||||
|
if ( function_exists('wp_set_comment_status') )
|
||||||
|
wp_set_comment_status($comment, 'approve');
|
||||||
|
else
|
||||||
|
$wpdb->query("UPDATE $wpdb->comments SET comment_approved = '1' WHERE comment_ID = '$comment'");
|
||||||
|
akismet_submit_nonspam_comment($comment);
|
||||||
|
++$i;
|
||||||
|
endforeach;
|
||||||
|
$to = add_query_arg( 'recovered', $i, $_SERVER['HTTP_REFERER'] );
|
||||||
|
wp_redirect( $to );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
if ('delete' == $_POST['action']) {
|
||||||
|
check_admin_referer( $akismet_nonce );
|
||||||
|
if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
|
||||||
|
die(__('You do not have sufficient permission to moderate comments.'));
|
||||||
|
|
||||||
|
$delete_time = $wpdb->escape( $_POST['display_time'] );
|
||||||
|
$comment_ids = $wpdb->get_col( "SELECT comment_id FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
|
||||||
|
if ( !empty( $comment_ids ) ) {
|
||||||
|
do_action( 'delete_comment', $comment_ids );
|
||||||
|
$wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_id IN ( " . implode( ', ', $comment_ids ) . " )");
|
||||||
|
wp_cache_delete( 'akismet_spam_count', 'widget' );
|
||||||
|
}
|
||||||
|
$to = add_query_arg( 'deleted', 'all', $_SERVER['HTTP_REFERER'] );
|
||||||
|
wp_redirect( $to );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_GET['recovered'] ) ) {
|
||||||
|
$i = (int) $_GET['recovered'];
|
||||||
|
echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset( $_GET['deleted'] ) )
|
||||||
|
echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
|
||||||
|
|
||||||
|
if ( isset( $GLOBALS['submenu']['edit-comments.php'] ) )
|
||||||
|
$link = 'edit-comments.php';
|
||||||
|
else
|
||||||
|
$link = 'edit.php';
|
||||||
|
?>
|
||||||
|
<style type="text/css">
|
||||||
|
.akismet-tabs {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
clear: both;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
height: 31px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
background: #ddd;
|
||||||
|
border-top: 1px solid #bdbdbd;
|
||||||
|
}
|
||||||
|
.akismet-tabs li {
|
||||||
|
float: left;
|
||||||
|
margin: 5px 0 0 20px;
|
||||||
|
}
|
||||||
|
.akismet-tabs a {
|
||||||
|
display: block;
|
||||||
|
padding: 4px .5em 3px;
|
||||||
|
border-bottom: none;
|
||||||
|
color: #036;
|
||||||
|
}
|
||||||
|
.akismet-tabs .active a {
|
||||||
|
background: #fff;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-bottom: none;
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
#akismetsearch {
|
||||||
|
float: right;
|
||||||
|
margin-top: -.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#akismetsearch p {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="wrap">
|
||||||
|
<h2><?php _e('Caught Spam') ?></h2>
|
||||||
|
<?php
|
||||||
|
$count = get_option( 'akismet_spam_count' );
|
||||||
|
if ( $count ) {
|
||||||
|
?>
|
||||||
|
<p><?php printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format_i18n($count) ); ?></p>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
$spam_count = akismet_spam_count();
|
||||||
|
|
||||||
|
if ( 0 == $spam_count ) {
|
||||||
|
echo '<p>'.__('You have no spam currently in the queue. Must be your lucky day. :)').'</p>';
|
||||||
|
echo '</div>';
|
||||||
|
} else {
|
||||||
|
echo '<p>'.__('You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it.').'</p>';
|
||||||
|
?>
|
||||||
|
<?php if ( !isset( $_POST['s'] ) ) { ?>
|
||||||
|
<form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
|
||||||
|
<?php akismet_nonce_field($akismet_nonce) ?>
|
||||||
|
<input type="hidden" name="action" value="delete" />
|
||||||
|
<?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?> <input type="submit" class="button delete" name="Submit" value="<?php _e('Delete all'); ?>" />
|
||||||
|
<input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" />
|
||||||
|
</form>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
<div class="wrap">
|
||||||
|
<?php if ( isset( $_POST['s'] ) ) { ?>
|
||||||
|
<h2><?php _e('Search'); ?></h2>
|
||||||
|
<?php } else { ?>
|
||||||
|
<?php echo '<p>'.__('These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as "not spam" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you.').'</p>'; ?>
|
||||||
|
<?php } ?>
|
||||||
|
<?php
|
||||||
|
if ( isset( $_POST['s'] ) ) {
|
||||||
|
$s = $wpdb->escape($_POST['s']);
|
||||||
|
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE
|
||||||
|
(comment_author LIKE '%$s%' OR
|
||||||
|
comment_author_email LIKE '%$s%' OR
|
||||||
|
comment_author_url LIKE ('%$s%') OR
|
||||||
|
comment_author_IP LIKE ('%$s%') OR
|
||||||
|
comment_content LIKE ('%$s%') ) AND
|
||||||
|
comment_approved = 'spam'
|
||||||
|
ORDER BY comment_date DESC");
|
||||||
|
} else {
|
||||||
|
if ( isset( $_GET['apage'] ) )
|
||||||
|
$page = (int) $_GET['apage'];
|
||||||
|
else
|
||||||
|
$page = 1;
|
||||||
|
|
||||||
|
if ( $page < 2 )
|
||||||
|
$page = 1;
|
||||||
|
|
||||||
|
$current_type = false;
|
||||||
|
if ( isset( $_GET['ctype'] ) )
|
||||||
|
$current_type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
|
||||||
|
|
||||||
|
$comments = akismet_spam_comments( $current_type, $page );
|
||||||
|
$total = akismet_spam_count( $current_type );
|
||||||
|
$totals = akismet_spam_totals();
|
||||||
|
?>
|
||||||
|
<ul class="akismet-tabs">
|
||||||
|
<li <?php if ( !isset( $_GET['ctype'] ) ) echo ' class="active"'; ?>><a href="edit-comments.php?page=akismet-admin"><?php _e('All'); ?></a></li>
|
||||||
|
<?php
|
||||||
|
foreach ( $totals as $type => $type_count ) {
|
||||||
|
if ( 'comment' == $type ) {
|
||||||
|
$type = 'comments';
|
||||||
|
$show = __('Comments');
|
||||||
|
} else {
|
||||||
|
$show = ucwords( $type );
|
||||||
|
}
|
||||||
|
$type_count = number_format_i18n( $type_count );
|
||||||
|
$extra = $current_type === $type ? ' class="active"' : '';
|
||||||
|
echo "<li $extra><a href='edit-comments.php?page=akismet-admin&ctype=$type'>$show ($type_count)</a></li>";
|
||||||
|
}
|
||||||
|
do_action( 'akismet_tabs' ); // so plugins can add more tabs easily
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($comments) {
|
||||||
|
?>
|
||||||
|
<form method="post" action="<?php echo attribute_escape("$link?page=akismet-admin"); ?>" id="akismetsearch">
|
||||||
|
<p> <input type="text" name="s" value="<?php if (isset($_POST['s'])) echo attribute_escape($_POST['s']); ?>" size="17" />
|
||||||
|
<input type="submit" class="button" name="submit" value="<?php echo attribute_escape(__('Search Spam »')) ?>" /> </p>
|
||||||
|
</form>
|
||||||
|
<?php if ( $total > 50 ) {
|
||||||
|
$total_pages = ceil( $total / 50 );
|
||||||
|
$r = '';
|
||||||
|
if ( 1 < $page ) {
|
||||||
|
$args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
|
||||||
|
$r .= '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('« Previous Page') .'</a>' . "\n";
|
||||||
|
}
|
||||||
|
if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
|
||||||
|
for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
|
||||||
|
if ( $page == $page_num ) :
|
||||||
|
$r .= "<strong>$page_num</strong>\n";
|
||||||
|
else :
|
||||||
|
$p = false;
|
||||||
|
if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
|
||||||
|
$args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
|
||||||
|
$r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
|
||||||
|
$in = true;
|
||||||
|
elseif ( $in == true ) :
|
||||||
|
$r .= "...\n";
|
||||||
|
$in = false;
|
||||||
|
endif;
|
||||||
|
endif;
|
||||||
|
endfor;
|
||||||
|
}
|
||||||
|
if ( ( $page ) * 50 < $total || -1 == $total ) {
|
||||||
|
$args['apage'] = $page + 1;
|
||||||
|
$r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page »') .'</a>' . "\n";
|
||||||
|
}
|
||||||
|
echo "<p>$r</p>";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php } ?>
|
||||||
|
<form style="clear: both;" method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
|
||||||
|
<?php akismet_nonce_field($akismet_nonce) ?>
|
||||||
|
<input type="hidden" name="action" value="recover" />
|
||||||
|
<ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
|
||||||
|
<?php
|
||||||
|
$i = 0;
|
||||||
|
foreach($comments as $comment) {
|
||||||
|
$i++;
|
||||||
|
$comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
|
||||||
|
$post = get_post($comment->comment_post_ID);
|
||||||
|
$post_title = $post->post_title;
|
||||||
|
if ($i % 2) $class = 'class="alternate"';
|
||||||
|
else $class = '';
|
||||||
|
echo "\n\t<li id='comment-$comment->comment_ID' $class>";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<p><strong><?php comment_author() ?></strong> <?php if ($comment->comment_author_email) { ?>| <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url) { ?> | <?php comment_author_url_link() ?> <?php } ?>| <?php _e('IP:') ?> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
|
||||||
|
|
||||||
|
<?php comment_text() ?>
|
||||||
|
|
||||||
|
<p><label for="spam-<?php echo $comment->comment_ID; ?>">
|
||||||
|
<input type="checkbox" id="spam-<?php echo $comment->comment_ID; ?>" name="not_spam[]" value="<?php echo $comment->comment_ID; ?>" />
|
||||||
|
<?php _e('Not Spam') ?></label> — <?php comment_date('M j, g:i A'); ?> — [
|
||||||
|
<?php
|
||||||
|
$post = get_post($comment->comment_post_ID);
|
||||||
|
$post_title = wp_specialchars( $post->post_title, 'double' );
|
||||||
|
$post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
|
||||||
|
?>
|
||||||
|
<a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] </p>
|
||||||
|
|
||||||
|
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
|
<?php if ( $total > 50 ) {
|
||||||
|
$total_pages = ceil( $total / 50 );
|
||||||
|
$r = '';
|
||||||
|
if ( 1 < $page ) {
|
||||||
|
$args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
|
||||||
|
$r .= '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('« Previous Page') .'</a>' . "\n";
|
||||||
|
}
|
||||||
|
if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
|
||||||
|
for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
|
||||||
|
if ( $page == $page_num ) :
|
||||||
|
$r .= "<strong>$page_num</strong>\n";
|
||||||
|
else :
|
||||||
|
$p = false;
|
||||||
|
if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
|
||||||
|
$args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
|
||||||
|
$r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
|
||||||
|
$in = true;
|
||||||
|
elseif ( $in == true ) :
|
||||||
|
$r .= "...\n";
|
||||||
|
$in = false;
|
||||||
|
endif;
|
||||||
|
endif;
|
||||||
|
endfor;
|
||||||
|
}
|
||||||
|
if ( ( $page ) * 50 < $total || -1 == $total ) {
|
||||||
|
$args['apage'] = $page + 1;
|
||||||
|
$r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page »') .'</a>' . "\n";
|
||||||
|
}
|
||||||
|
echo "<p>$r</p>";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<p class="submit">
|
||||||
|
<input type="submit" name="submit" value="<?php echo attribute_escape(__('De-spam marked comments »')); ?>" />
|
||||||
|
</p>
|
||||||
|
<p><?php _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.'); ?></p>
|
||||||
|
</form>
|
||||||
|
<?php
|
||||||
|
} else {
|
||||||
|
?>
|
||||||
|
<p><?php _e('No results found.'); ?></p>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<?php if ( !isset( $_POST['s'] ) ) { ?>
|
||||||
|
<form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
|
||||||
|
<?php akismet_nonce_field($akismet_nonce) ?>
|
||||||
|
<p><input type="hidden" name="action" value="delete" />
|
||||||
|
<?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?> <input type="submit" name="Submit" class="button" value="<?php echo attribute_escape(__('Delete all')); ?>" />
|
||||||
|
<input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" /></p>
|
||||||
|
</form>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('admin_menu', 'akismet_manage_page');
|
||||||
|
|
||||||
|
function redirect_old_akismet_urls( ) {
|
||||||
|
global $wp_db_version;
|
||||||
|
$script_name = array_pop( split( '/', $_SERVER['PHP_SELF'] ) );
|
||||||
|
|
||||||
|
$page = '';
|
||||||
|
if ( !empty( $_GET['page'] ) )
|
||||||
|
$page = $_GET['page'];
|
||||||
|
|
||||||
|
// 2.7 redirect for people who might have bookmarked the old page
|
||||||
|
if ( 8204 < $wp_db_version && ( 'edit-comments.php' == $script_name || 'edit.php' == $script_name ) && 'akismet-admin' == $page ) {
|
||||||
|
$new_url = esc_url( 'edit-comments.php?comment_status=spam' );
|
||||||
|
wp_redirect( $new_url, 301 );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
add_action( 'admin_init', 'redirect_old_akismet_urls' );
|
||||||
|
|
||||||
|
// For WP <= 2.3.x
|
||||||
|
global $pagenow;
|
||||||
|
|
||||||
|
if ( 'moderation.php' == $pagenow ) {
|
||||||
|
function akismet_recheck_button( $page ) {
|
||||||
|
global $submenu;
|
||||||
|
if ( isset( $submenu['edit-comments.php'] ) )
|
||||||
|
$link = 'edit-comments.php';
|
||||||
|
else
|
||||||
|
$link = 'edit.php';
|
||||||
|
$button = "<a href='$link?page=akismet-admin&recheckqueue=true&noheader=true' style='display: block; width: 100px; position: absolute; right: 7%; padding: 5px; font-size: 14px; text-decoration: underline; background: #fff; border: 1px solid #ccc;'>" . __('Recheck Queue for Spam') . "</a>";
|
||||||
|
$page = str_replace( '<div class="wrap">', '<div class="wrap">' . $button, $page );
|
||||||
|
return $page;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
|
||||||
|
ob_start( 'akismet_recheck_button' );
|
||||||
|
}
|
||||||
|
|
||||||
|
// This option causes tons of FPs, was removed in 2.1
|
||||||
|
function akismet_kill_proxy_check( $option ) { return 0; }
|
||||||
|
add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
|
||||||
130
src/wp-content/plugins/akismet/readme.txt
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
=== Akismet ===
|
||||||
|
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, automattic
|
||||||
|
Tags: akismet, comments, spam
|
||||||
|
Requires at least: 3.0
|
||||||
|
Tested up to: 3.1
|
||||||
|
Stable tag: 2.5.3
|
||||||
|
License: GPLv2 or later
|
||||||
|
|
||||||
|
Akismet checks your comments against the Akismet web service to see if they look like spam or not.
|
||||||
|
|
||||||
|
== Description ==
|
||||||
|
|
||||||
|
Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you
|
||||||
|
review the spam it catches under your blog's "Comments" admin screen.
|
||||||
|
|
||||||
|
Major new features in Akismet 2.5 include:
|
||||||
|
|
||||||
|
* A comment status history, so you can easily see which comments were caught or cleared by Akismet, and which were spammed or unspammed by a moderator
|
||||||
|
* Links are highlighted in the comment body, to reveal hidden or misleading links
|
||||||
|
* If your web host is unable to reach Akismet's servers, the plugin will automatically retry when your connection is back up
|
||||||
|
* Moderators can see the number of approved comments for each user
|
||||||
|
* Spam and Unspam reports now include more information, to help improve accuracy
|
||||||
|
|
||||||
|
PS: You'll need an [Akismet.com API key](http://akismet.com/get/) to use it. Keys are free for personal blogs, with paid subscriptions available for businesses and commercial sites.
|
||||||
|
|
||||||
|
== Installation ==
|
||||||
|
|
||||||
|
Upload the Akismet plugin to your blog, Activate it, then enter your [Akismet.com API key](http://akismet.com/get/).
|
||||||
|
|
||||||
|
1, 2, 3: You're done!
|
||||||
|
|
||||||
|
== Changelog ==
|
||||||
|
|
||||||
|
= 2.5.3 =
|
||||||
|
* Specify the license is GPL v2 or later
|
||||||
|
* Fix a bug that could result in orphaned commentmeta entries
|
||||||
|
* Include hotfix for WordPress 3.0.5 filter issue
|
||||||
|
|
||||||
|
= 2.5.2 =
|
||||||
|
|
||||||
|
* Properly format the comment count for author counts
|
||||||
|
* Look for super admins on multisite installs when looking up user roles
|
||||||
|
* Increase the HTTP request timeout
|
||||||
|
* Removed padding for author approved count
|
||||||
|
* Fix typo in function name
|
||||||
|
* Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side.
|
||||||
|
|
||||||
|
= 2.5.1 =
|
||||||
|
|
||||||
|
* Fix a bug that caused the "Auto delete" option to fail to discard comments correctly
|
||||||
|
* Remove the comment nonce form field from the 'Akismet Configuration' page in favor of using a filter, akismet_comment_nonce
|
||||||
|
* Fixed padding bug in "author" column of posts screen
|
||||||
|
* Added margin-top to "cleared by ..." badges on dashboard
|
||||||
|
* Fix possible error when calling akismet_cron_recheck()
|
||||||
|
* Fix more PHP warnings
|
||||||
|
* Clean up XHTML warnings for comment nonce
|
||||||
|
* Fix for possible condition where scheduled comment re-checks could get stuck
|
||||||
|
* Clean up the comment meta details after deleting a comment
|
||||||
|
* Only show the status badge if the comment status has been changed by someone/something other than Akismet
|
||||||
|
* Show a 'History' link in the row-actions
|
||||||
|
* Translation fixes
|
||||||
|
* Reduced font-size on author name
|
||||||
|
* Moved "flagged by..." notification to top right corner of comment container and removed heavy styling
|
||||||
|
* Hid "flagged by..." notification while on dashboard
|
||||||
|
|
||||||
|
= 2.5.0 =
|
||||||
|
|
||||||
|
* Track comment actions under 'Akismet Status' on the edit comment screen
|
||||||
|
* Fix a few remaining deprecated function calls ( props Mike Glendinning )
|
||||||
|
* Use HTTPS for the stats IFRAME when wp-admin is using HTTPS
|
||||||
|
* Use the WordPress HTTP class if available
|
||||||
|
* Move the admin UI code to a separate file, only loaded when needed
|
||||||
|
* Add cron retry feature, to replace the old connectivity check
|
||||||
|
* Display Akismet status badge beside each comment
|
||||||
|
* Record history for each comment, and display it on the edit page
|
||||||
|
* Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham
|
||||||
|
* Highlight links in comment content
|
||||||
|
* New option, "Show the number of comments you've approved beside each comment author."
|
||||||
|
* New option, "Use a nonce on the comment form."
|
||||||
|
|
||||||
|
= 2.4.0 =
|
||||||
|
|
||||||
|
* Spell out that the license is GPLv2
|
||||||
|
* Fix PHP warnings
|
||||||
|
* Fix WordPress deprecated function calls
|
||||||
|
* Fire the delete_comment action when deleting comments
|
||||||
|
* Move code specific for older WP versions to legacy.php
|
||||||
|
* General code clean up
|
||||||
|
|
||||||
|
= 2.3.0 =
|
||||||
|
|
||||||
|
* Fix "Are you sure" nonce message on config screen in WPMU
|
||||||
|
* Fix XHTML compliance issue in sidebar widget
|
||||||
|
* Change author link; remove some old references to WordPress.com accounts
|
||||||
|
* Localize the widget title (core ticket #13879)
|
||||||
|
|
||||||
|
= 2.2.9 =
|
||||||
|
|
||||||
|
* Eliminate a potential conflict with some plugins that may cause spurious reports
|
||||||
|
|
||||||
|
= 2.2.8 =
|
||||||
|
|
||||||
|
* Fix bug in initial comment check for ipv6 addresses
|
||||||
|
* Report comments as ham when they are moved from spam to moderation
|
||||||
|
* Report comments as ham when clicking undo after spam
|
||||||
|
* Use transition_comment_status action when available instead of older actions for spam/ham submissions
|
||||||
|
* Better diagnostic messages when PHP network functions are unavailable
|
||||||
|
* Better handling of comments by logged-in users
|
||||||
|
|
||||||
|
= 2.2.7 =
|
||||||
|
|
||||||
|
* Add a new AKISMET_VERSION constant
|
||||||
|
* Reduce the possibility of over-counting spam when another spam filter plugin is in use
|
||||||
|
* Disable the connectivity check when the API key is hard-coded for WPMU
|
||||||
|
|
||||||
|
= 2.2.6 =
|
||||||
|
|
||||||
|
* Fix a global warning introduced in 2.2.5
|
||||||
|
* Add changelog and additional readme.txt tags
|
||||||
|
* Fix an array conversion warning in some versions of PHP
|
||||||
|
* Support a new WPCOM_API_KEY constant for easier use with WordPress MU
|
||||||
|
|
||||||
|
= 2.2.5 =
|
||||||
|
|
||||||
|
* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
|
||||||
|
|
||||||
|
= 2.2.4 =
|
||||||
|
|
||||||
|
* Fixed a key problem affecting the stats feature in WordPress MU
|
||||||
|
* Provide additional blog information in Akismet API calls
|
||||||
90
src/wp-content/plugins/akismet/widget.php
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @package Akismet
|
||||||
|
*/
|
||||||
|
// Widget stuff
|
||||||
|
function widget_akismet_register() {
|
||||||
|
if ( function_exists('register_sidebar_widget') ) :
|
||||||
|
function widget_akismet($args) {
|
||||||
|
extract($args);
|
||||||
|
$options = get_option('widget_akismet');
|
||||||
|
$count = get_option('akismet_spam_count');
|
||||||
|
?>
|
||||||
|
<?php echo $before_widget; ?>
|
||||||
|
<?php echo $before_title . $options['title'] . $after_title; ?>
|
||||||
|
<div id="akismetwrap"><div id="akismetstats"><a id="aka" href="http://akismet.com" title=""><?php printf( _n( '%1$s%2$s%3$s %4$sspam comment%5$s %6$sblocked by%7$s<br />%8$sAkismet%9$s', '%1$s%2$s%3$s %4$sspam comments%5$s %6$sblocked by%7$s<br />%8$sAkismet%9$s', $count ), '<span id="akismet1"><span id="akismetcount">', number_format_i18n( $count ), '</span>', '<span id="akismetsc">', '</span></span>', '<span id="akismet2"><span id="akismetbb">', '</span>', '<span id="akismeta">', '</span></span>' ); ?></a></div></div>
|
||||||
|
<?php echo $after_widget; ?>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
function widget_akismet_style() {
|
||||||
|
$plugin_dir = '/wp-content/plugins';
|
||||||
|
if ( defined( 'PLUGINDIR' ) )
|
||||||
|
$plugin_dir = '/' . PLUGINDIR;
|
||||||
|
|
||||||
|
?>
|
||||||
|
<style type="text/css">
|
||||||
|
#aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
|
||||||
|
#aka:hover{border:none;text-decoration:none}
|
||||||
|
#aka:hover #akismet1{display:none}
|
||||||
|
#aka:hover #akismet2,#akismet1{display:block}
|
||||||
|
#akismet2{display:none;padding-top:2px}
|
||||||
|
#akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
|
||||||
|
#akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
|
||||||
|
#akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'), $plugin_dir; ?>/akismet/akismet.gif) no-repeat top left;border:none;color:#fff;font:11px 'Trebuchet MS','Myriad Pro',sans-serif;height:40px;line-height:100%;overflow:hidden;padding:8px 0 0;text-align:center;width:120px}
|
||||||
|
</style>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
function widget_akismet_control() {
|
||||||
|
$options = $newoptions = get_option('widget_akismet');
|
||||||
|
if ( isset( $_POST['akismet-submit'] ) && $_POST["akismet-submit"] ) {
|
||||||
|
$newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
|
||||||
|
if ( empty($newoptions['title']) ) $newoptions['title'] = __('Spam Blocked');
|
||||||
|
}
|
||||||
|
if ( $options != $newoptions ) {
|
||||||
|
$options = $newoptions;
|
||||||
|
update_option('widget_akismet', $options);
|
||||||
|
}
|
||||||
|
$title = htmlspecialchars($options['title'], ENT_QUOTES);
|
||||||
|
?>
|
||||||
|
<p><label for="akismet-title"><?php _e('Title:'); ?> <input style="width: 250px;" id="akismet-title" name="akismet-title" type="text" value="<?php echo $title; ?>" /></label></p>
|
||||||
|
<input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( function_exists( 'wp_register_sidebar_widget' ) ) {
|
||||||
|
wp_register_sidebar_widget( 'akismet', 'Akismet', 'widget_akismet', null, 'akismet');
|
||||||
|
wp_register_widget_control( 'akismet', 'Akismet', 'widget_akismet_control', null, 75, 'akismet');
|
||||||
|
} else {
|
||||||
|
register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
|
||||||
|
register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
|
||||||
|
}
|
||||||
|
if ( is_active_widget('widget_akismet') )
|
||||||
|
add_action('wp_head', 'widget_akismet_style');
|
||||||
|
endif;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('init', 'widget_akismet_register');
|
||||||
|
|
||||||
|
// Counter for non-widget users
|
||||||
|
function akismet_counter() {
|
||||||
|
$plugin_dir = '/wp-content/plugins';
|
||||||
|
if ( defined( 'PLUGINDIR' ) )
|
||||||
|
$plugin_dir = '/' . PLUGINDIR;
|
||||||
|
|
||||||
|
?>
|
||||||
|
<style type="text/css">
|
||||||
|
#akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
|
||||||
|
#aka:hover{border:none;text-decoration:none}
|
||||||
|
#aka:hover #akismet1{display:none}
|
||||||
|
#aka:hover #akismet2,#akismet1{display:block}
|
||||||
|
#akismet2{display:none;padding-top:2px}
|
||||||
|
#akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
|
||||||
|
#akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
|
||||||
|
#akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'), $plugin_dir; ?>/akismet/akismet.gif) no-repeat top left;border:none;color:#fff;font:11px 'Trebuchet MS','Myriad Pro',sans-serif;height:40px;line-height:100%;overflow:hidden;padding:8px 0 0;text-align:center;width:120px}
|
||||||
|
</style>
|
||||||
|
<?php
|
||||||
|
$count = get_option('akismet_spam_count');
|
||||||
|
printf( _n( '<div id="akismetwrap"><div id="akismetstats"><a id="aka" href="http://akismet.com" title=""><div id="akismet1"><span id="akismetcount">%1$s</span> <span id="akismetsc">spam comment</span></div> <div id="akismet2"><span id="akismetbb">blocked by</span><br /><span id="akismeta">Akismet</span></div></a></div></div>', '<div id="akismetwrap"><div id="akismetstats"><a id="aka" href="http://akismet.com" title=""><div id="akismet1"><span id="akismetcount">%1$s</span> <span id="akismetsc">spam comments</span></div> <div id="akismet2"><span id="akismetbb">blocked by</span><br /><span id="akismeta">Akismet</span></div></a></div></div>', $count ), number_format_i18n( $count ) );
|
||||||
|
}
|
||||||
82
src/wp-content/plugins/hello.php
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @package Hello_Dolly
|
||||||
|
* @version 1.6
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
Plugin Name: Hello Dolly
|
||||||
|
Plugin URI: http://wordpress.org/extend/plugins/hello-dolly/
|
||||||
|
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
|
||||||
|
Author: Matt Mullenweg
|
||||||
|
Version: 1.6
|
||||||
|
Author URI: http://ma.tt/
|
||||||
|
*/
|
||||||
|
|
||||||
|
function hello_dolly_get_lyric() {
|
||||||
|
/** These are the lyrics to Hello Dolly */
|
||||||
|
$lyrics = "Hello, Dolly
|
||||||
|
Well, hello, Dolly
|
||||||
|
It's so nice to have you back where you belong
|
||||||
|
You're lookin' swell, Dolly
|
||||||
|
I can tell, Dolly
|
||||||
|
You're still glowin', you're still crowin'
|
||||||
|
You're still goin' strong
|
||||||
|
We feel the room swayin'
|
||||||
|
While the band's playin'
|
||||||
|
One of your old favourite songs from way back when
|
||||||
|
So, take her wrap, fellas
|
||||||
|
Find her an empty lap, fellas
|
||||||
|
Dolly'll never go away again
|
||||||
|
Hello, Dolly
|
||||||
|
Well, hello, Dolly
|
||||||
|
It's so nice to have you back where you belong
|
||||||
|
You're lookin' swell, Dolly
|
||||||
|
I can tell, Dolly
|
||||||
|
You're still glowin', you're still crowin'
|
||||||
|
You're still goin' strong
|
||||||
|
We feel the room swayin'
|
||||||
|
While the band's playin'
|
||||||
|
One of your old favourite songs from way back when
|
||||||
|
Golly, gee, fellas
|
||||||
|
Find her a vacant knee, fellas
|
||||||
|
Dolly'll never go away
|
||||||
|
Dolly'll never go away
|
||||||
|
Dolly'll never go away again";
|
||||||
|
|
||||||
|
// Here we split it into lines
|
||||||
|
$lyrics = explode( "\n", $lyrics );
|
||||||
|
|
||||||
|
// And then randomly choose a line
|
||||||
|
return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] );
|
||||||
|
}
|
||||||
|
|
||||||
|
// This just echoes the chosen line, we'll position it later
|
||||||
|
function hello_dolly() {
|
||||||
|
$chosen = hello_dolly_get_lyric();
|
||||||
|
echo "<p id='dolly'>$chosen</p>";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Now we set that function up to execute when the admin_notices action is called
|
||||||
|
add_action( 'admin_notices', 'hello_dolly' );
|
||||||
|
|
||||||
|
// We need some CSS to position the paragraph
|
||||||
|
function dolly_css() {
|
||||||
|
// This makes sure that the positioning is also good for right-to-left languages
|
||||||
|
$x = is_rtl() ? 'left' : 'right';
|
||||||
|
|
||||||
|
echo "
|
||||||
|
<style type='text/css'>
|
||||||
|
#dolly {
|
||||||
|
float: $x;
|
||||||
|
padding-$x: 15px;
|
||||||
|
padding-top: 5px;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'admin_head', 'dolly_css' );
|
||||||
|
|
||||||
|
?>
|
||||||
30
src/wp-content/themes/twentyten/404.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying 404 pages (Not Found).
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<div id="post-0" class="post error404 not-found">
|
||||||
|
<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
|
||||||
|
<?php get_search_form(); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
</div><!-- #post-0 -->
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
// focus on search field after it has loaded
|
||||||
|
document.getElementById('s') && document.getElementById('s').focus();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
61
src/wp-content/themes/twentyten/archive.php
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Archive pages.
|
||||||
|
*
|
||||||
|
* Used to display archive-type pages if nothing more specific matches a query.
|
||||||
|
* For example, puts together date-based pages if no date.php file exists.
|
||||||
|
*
|
||||||
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Queue the first post, that way we know
|
||||||
|
* what date we're dealing with (if that is the case).
|
||||||
|
*
|
||||||
|
* We reset this later so we can run the loop
|
||||||
|
* properly with a call to rewind_posts().
|
||||||
|
*/
|
||||||
|
if ( have_posts() )
|
||||||
|
the_post();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1 class="page-title">
|
||||||
|
<?php if ( is_day() ) : ?>
|
||||||
|
<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
|
||||||
|
<?php elseif ( is_month() ) : ?>
|
||||||
|
<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y' ) ); ?>
|
||||||
|
<?php elseif ( is_year() ) : ?>
|
||||||
|
<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y' ) ); ?>
|
||||||
|
<?php else : ?>
|
||||||
|
<?php _e( 'Blog Archives', 'twentyten' ); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Since we called the_post() above, we need to
|
||||||
|
* rewind the loop back to the beginning that way
|
||||||
|
* we can run the loop properly, in full.
|
||||||
|
*/
|
||||||
|
rewind_posts();
|
||||||
|
|
||||||
|
/* Run the loop for the archives page to output the posts.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-archive.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'archive' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
26
src/wp-content/themes/twentyten/attachment.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying attachments.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container" class="single-attachment">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop to output the attachment.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-attachment.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'attachment' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
60
src/wp-content/themes/twentyten/author.php
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Author Archive pages.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Queue the first post, that way we know who
|
||||||
|
* the author is when we try to get their name,
|
||||||
|
* URL, description, avatar, etc.
|
||||||
|
*
|
||||||
|
* We reset this later so we can run the loop
|
||||||
|
* properly with a call to rewind_posts().
|
||||||
|
*/
|
||||||
|
if ( have_posts() )
|
||||||
|
the_post();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyten' ), "<span class='vcard'><a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a></span>" ); ?></h1>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
// If a user has filled out their description, show a bio on their entries.
|
||||||
|
if ( get_the_author_meta( 'description' ) ) : ?>
|
||||||
|
<div id="entry-author-info">
|
||||||
|
<div id="author-avatar">
|
||||||
|
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
|
||||||
|
</div><!-- #author-avatar -->
|
||||||
|
<div id="author-description">
|
||||||
|
<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
|
||||||
|
<?php the_author_meta( 'description' ); ?>
|
||||||
|
</div><!-- #author-description -->
|
||||||
|
</div><!-- #entry-author-info -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Since we called the_post() above, we need to
|
||||||
|
* rewind the loop back to the beginning that way
|
||||||
|
* we can run the loop properly, in full.
|
||||||
|
*/
|
||||||
|
rewind_posts();
|
||||||
|
|
||||||
|
/* Run the loop for the author archive page to output the authors posts
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-author.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'author' );
|
||||||
|
?>
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
34
src/wp-content/themes/twentyten/category.php
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Category Archive pages.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<h1 class="page-title"><?php
|
||||||
|
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
||||||
|
?></h1>
|
||||||
|
<?php
|
||||||
|
$category_description = category_description();
|
||||||
|
if ( ! empty( $category_description ) )
|
||||||
|
echo '<div class="archive-meta">' . $category_description . '</div>';
|
||||||
|
|
||||||
|
/* Run the loop for the category page to output the posts.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-category.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'category' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
79
src/wp-content/themes/twentyten/comments.php
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Comments.
|
||||||
|
*
|
||||||
|
* The area of the page that contains both current comments
|
||||||
|
* and the comment form. The actual display of comments is
|
||||||
|
* handled by a callback to twentyten_comment which is
|
||||||
|
* located in the functions.php file.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="comments">
|
||||||
|
<?php if ( post_password_required() ) : ?>
|
||||||
|
<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
|
||||||
|
</div><!-- #comments -->
|
||||||
|
<?php
|
||||||
|
/* Stop the rest of comments.php from being processed,
|
||||||
|
* but don't kill the script entirely -- we still have
|
||||||
|
* to fully load the template.
|
||||||
|
*/
|
||||||
|
return;
|
||||||
|
endif;
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
// You can start editing here -- including this comment!
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if ( have_comments() ) : ?>
|
||||||
|
<h3 id="comments-title"><?php
|
||||||
|
printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
|
||||||
|
number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
|
||||||
|
?></h3>
|
||||||
|
|
||||||
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
||||||
|
<div class="navigation">
|
||||||
|
<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'twentyten' ) ); ?></div>
|
||||||
|
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
|
||||||
|
</div> <!-- .navigation -->
|
||||||
|
<?php endif; // check for comment navigation ?>
|
||||||
|
|
||||||
|
<ol class="commentlist">
|
||||||
|
<?php
|
||||||
|
/* Loop through and list the comments. Tell wp_list_comments()
|
||||||
|
* to use twentyten_comment() to format the comments.
|
||||||
|
* If you want to overload this in a child theme then you can
|
||||||
|
* define twentyten_comment() and that will be used instead.
|
||||||
|
* See twentyten_comment() in twentyten/functions.php for more.
|
||||||
|
*/
|
||||||
|
wp_list_comments( array( 'callback' => 'twentyten_comment' ) );
|
||||||
|
?>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
||||||
|
<div class="navigation">
|
||||||
|
<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'twentyten' ) ); ?></div>
|
||||||
|
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
|
||||||
|
</div><!-- .navigation -->
|
||||||
|
<?php endif; // check for comment navigation ?>
|
||||||
|
|
||||||
|
<?php else : // or, if we don't have comments:
|
||||||
|
|
||||||
|
/* If there are no comments and comments are closed,
|
||||||
|
* let's leave a little note, shall we?
|
||||||
|
*/
|
||||||
|
if ( ! comments_open() ) :
|
||||||
|
?>
|
||||||
|
<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
|
||||||
|
<?php endif; // end ! comments_open() ?>
|
||||||
|
|
||||||
|
<?php endif; // end have_comments() ?>
|
||||||
|
|
||||||
|
<?php comment_form(); ?>
|
||||||
|
|
||||||
|
</div><!-- #comments -->
|
||||||
56
src/wp-content/themes/twentyten/editor-style-rtl.css
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
Theme Name: Twenty Ten
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
Used to style the TinyMCE editor.
|
||||||
|
*/
|
||||||
|
html .mceContentBody{
|
||||||
|
direction:rtl;
|
||||||
|
unicode-bidi:embed;
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
font-family: Arial, Tahoma, sans-serif;
|
||||||
|
}
|
||||||
|
/* Text elements */
|
||||||
|
ul {
|
||||||
|
margin: 0 -18px 18px 0;
|
||||||
|
}
|
||||||
|
ol {
|
||||||
|
margin: 0 -18px 18px 0;
|
||||||
|
}
|
||||||
|
dd {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
text-align: right;
|
||||||
|
margin: 0 0 24px -1px;
|
||||||
|
}
|
||||||
|
html .mceContentBody{
|
||||||
|
direction:rtl;
|
||||||
|
unicode-bidi:embed;
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
font-family: Arial, Tahoma, sans-serif;
|
||||||
|
}
|
||||||
|
/* Text elements */
|
||||||
|
ul {
|
||||||
|
margin: 0 -18px 18px 0;
|
||||||
|
}
|
||||||
|
ol {
|
||||||
|
margin: 0 -18px 18px 0;
|
||||||
|
}
|
||||||
|
dd {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
text-align: right;
|
||||||
|
margin: 0 0 24px -1px;
|
||||||
|
}
|
||||||
292
src/wp-content/themes/twentyten/editor-style.css
Normal file
@ -0,0 +1,292 @@
|
|||||||
|
/*
|
||||||
|
Theme Name: Twenty Ten
|
||||||
|
Description: Used to style the TinyMCE editor.
|
||||||
|
*/
|
||||||
|
html .mceContentBody {
|
||||||
|
max-width: 640px;
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
color: #444;
|
||||||
|
font-family: Georgia, "Bitstream Charter", serif;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
p,
|
||||||
|
dl,
|
||||||
|
td,
|
||||||
|
th,
|
||||||
|
ul,
|
||||||
|
ol,
|
||||||
|
blockquote {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
tr th,
|
||||||
|
thead th,
|
||||||
|
label,
|
||||||
|
tr th,
|
||||||
|
thead th {
|
||||||
|
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
font-family: "Courier 10 Pitch", Courier, monospace;
|
||||||
|
}
|
||||||
|
code, code var {
|
||||||
|
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||||
|
}
|
||||||
|
body, input, textarea {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
background-color: #e7e7e7;
|
||||||
|
border: 0;
|
||||||
|
clear: both;
|
||||||
|
height: 1px;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
}
|
||||||
|
/* Text elements */
|
||||||
|
p {
|
||||||
|
margin-bottom: 18px;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style: square;
|
||||||
|
margin: 0 0 18px 1.5em;
|
||||||
|
}
|
||||||
|
ol {
|
||||||
|
list-style: decimal;
|
||||||
|
margin: 0 0 18px 1.5em;
|
||||||
|
}
|
||||||
|
ol ol {
|
||||||
|
list-style: upper-alpha;
|
||||||
|
}
|
||||||
|
ol ol ol {
|
||||||
|
list-style: lower-roman;
|
||||||
|
}
|
||||||
|
ol ol ol ol {
|
||||||
|
list-style: lower-alpha;
|
||||||
|
}
|
||||||
|
ul ul,
|
||||||
|
ol ol,
|
||||||
|
ul ol,
|
||||||
|
ol ul {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
dl {
|
||||||
|
margin: 0 0 24px 0;
|
||||||
|
}
|
||||||
|
dt {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
dd {
|
||||||
|
margin-bottom: 18px;
|
||||||
|
}
|
||||||
|
strong {
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
cite,
|
||||||
|
em,
|
||||||
|
i {
|
||||||
|
border: none;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
big {
|
||||||
|
font-size: 131.25%;
|
||||||
|
}
|
||||||
|
ins {
|
||||||
|
background: #ffc;
|
||||||
|
border: none;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
del {
|
||||||
|
text-decoration: line-through;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
font-style: italic;
|
||||||
|
padding: 0 3em;
|
||||||
|
}
|
||||||
|
blockquote cite,
|
||||||
|
blockquote em,
|
||||||
|
blockquote i {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
background: #f7f7f7;
|
||||||
|
color: #222;
|
||||||
|
line-height: 18px;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
padding: 1.5em;
|
||||||
|
}
|
||||||
|
abbr,
|
||||||
|
acronym {
|
||||||
|
border-bottom: 1px dotted #666;
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
ins {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
sup,
|
||||||
|
sub {
|
||||||
|
font-size: 10px;
|
||||||
|
height: 0;
|
||||||
|
line-height: 1;
|
||||||
|
position: relative;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
sup {
|
||||||
|
bottom: 1ex;
|
||||||
|
}
|
||||||
|
sub {
|
||||||
|
top: .5ex;
|
||||||
|
}
|
||||||
|
a:link {
|
||||||
|
color: #06c;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #743399;
|
||||||
|
}
|
||||||
|
a:active,
|
||||||
|
a:hover {
|
||||||
|
color: #ff4b33;
|
||||||
|
}
|
||||||
|
p,
|
||||||
|
ul,
|
||||||
|
ol,
|
||||||
|
dd,
|
||||||
|
pre,
|
||||||
|
hr {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
ul ul,
|
||||||
|
ol ol,
|
||||||
|
ul ol,
|
||||||
|
ol ul {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
pre,
|
||||||
|
kbd,
|
||||||
|
tt,
|
||||||
|
var {
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
strong,
|
||||||
|
b,
|
||||||
|
dt,
|
||||||
|
th {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
color: #000;
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1.5em;
|
||||||
|
margin: 0 0 20px 0;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 2.4em;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
font-size: 1.8em;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
font-size: 1.4em;
|
||||||
|
}
|
||||||
|
h4 {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
h5 {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
h6 {
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border: 1px solid #e7e7e7 !important;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
margin: 0 -1px 24px 0;
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
tr th,
|
||||||
|
thead th {
|
||||||
|
border: none !important;
|
||||||
|
color: #888;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 18px;
|
||||||
|
padding: 9px 24px;
|
||||||
|
}
|
||||||
|
tr td {
|
||||||
|
border: none !important;
|
||||||
|
border-top: 1px solid #e7e7e7 !important;
|
||||||
|
padding: 6px 24px;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
img.size-auto,
|
||||||
|
img.size-large,
|
||||||
|
img.size-full,
|
||||||
|
img.size-medium {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.alignleft,
|
||||||
|
img.alignleft {
|
||||||
|
display: inline;
|
||||||
|
float: left;
|
||||||
|
margin-right: 24px;
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
.alignright,
|
||||||
|
img.alignright {
|
||||||
|
display: inline;
|
||||||
|
float: right;
|
||||||
|
margin-left: 24px;
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
.aligncenter,
|
||||||
|
img.aligncenter {
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
img.alignleft,
|
||||||
|
img.alignright,
|
||||||
|
img.aligncenter {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
.wp-caption {
|
||||||
|
background: #f1f1f1;
|
||||||
|
border: none;
|
||||||
|
-khtml-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
color: #888;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 18px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
max-width: 632px !important; /* prevent too-wide images from breaking layout */
|
||||||
|
padding: 4px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.wp-caption img {
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
.wp-caption p.wp-caption-text {
|
||||||
|
margin: 0 0 4px;
|
||||||
|
}
|
||||||
|
.wp-smiley {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
50
src/wp-content/themes/twentyten/footer.php
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying the footer.
|
||||||
|
*
|
||||||
|
* Contains the closing of the id=main div and all content
|
||||||
|
* after. Calls sidebar-footer.php for bottom widgets.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
</div><!-- #main -->
|
||||||
|
|
||||||
|
<div id="footer" role="contentinfo">
|
||||||
|
<div id="colophon">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* A sidebar in the footer? Yep. You can can customize
|
||||||
|
* your footer with four columns of widgets.
|
||||||
|
*/
|
||||||
|
get_sidebar( 'footer' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="site-info">
|
||||||
|
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
||||||
|
<?php bloginfo( 'name' ); ?>
|
||||||
|
</a>
|
||||||
|
</div><!-- #site-info -->
|
||||||
|
|
||||||
|
<div id="site-generator">
|
||||||
|
<?php do_action( 'twentyten_credits' ); ?>
|
||||||
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
|
||||||
|
</div><!-- #site-generator -->
|
||||||
|
|
||||||
|
</div><!-- #colophon -->
|
||||||
|
</div><!-- #footer -->
|
||||||
|
|
||||||
|
</div><!-- #wrapper -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Always have wp_footer() just before the closing </body>
|
||||||
|
* tag of your theme, or you will break many plugins, which
|
||||||
|
* generally use this hook to reference JavaScript files.
|
||||||
|
*/
|
||||||
|
|
||||||
|
wp_footer();
|
||||||
|
?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
508
src/wp-content/themes/twentyten/functions.php
Normal file
@ -0,0 +1,508 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* TwentyTen functions and definitions
|
||||||
|
*
|
||||||
|
* Sets up the theme and provides some helper functions. Some helper functions
|
||||||
|
* are used in the theme as custom template tags. Others are attached to action and
|
||||||
|
* filter hooks in WordPress to change core functionality.
|
||||||
|
*
|
||||||
|
* The first function, twentyten_setup(), sets up the theme by registering support
|
||||||
|
* for various features in WordPress, such as post thumbnails, navigation menus, and the like.
|
||||||
|
*
|
||||||
|
* When using a child theme (see http://codex.wordpress.org/Theme_Development and
|
||||||
|
* http://codex.wordpress.org/Child_Themes), you can override certain functions
|
||||||
|
* (those wrapped in a function_exists() call) by defining them first in your child theme's
|
||||||
|
* functions.php file. The child theme's functions.php file is included before the parent
|
||||||
|
* theme's file, so the child theme functions would be used.
|
||||||
|
*
|
||||||
|
* Functions that are not pluggable (not wrapped in function_exists()) are instead attached
|
||||||
|
* to a filter or action hook. The hook can be removed by using remove_action() or
|
||||||
|
* remove_filter() and you can attach your own function to the hook.
|
||||||
|
*
|
||||||
|
* We can remove the parent theme's hook only after it is attached, which means we need to
|
||||||
|
* wait until setting up the child theme:
|
||||||
|
*
|
||||||
|
* <code>
|
||||||
|
* add_action( 'after_setup_theme', 'my_child_theme_setup' );
|
||||||
|
* function my_child_theme_setup() {
|
||||||
|
* // We are providing our own filter for excerpt_length (or using the unfiltered value)
|
||||||
|
* remove_filter( 'excerpt_length', 'twentyten_excerpt_length' );
|
||||||
|
* ...
|
||||||
|
* }
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the content width based on the theme's design and stylesheet.
|
||||||
|
*
|
||||||
|
* Used to set the width of images and content. Should be equal to the width the theme
|
||||||
|
* is designed for, generally via the style.css stylesheet.
|
||||||
|
*/
|
||||||
|
if ( ! isset( $content_width ) )
|
||||||
|
$content_width = 640;
|
||||||
|
|
||||||
|
/** Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
|
||||||
|
add_action( 'after_setup_theme', 'twentyten_setup' );
|
||||||
|
|
||||||
|
if ( ! function_exists( 'twentyten_setup' ) ):
|
||||||
|
/**
|
||||||
|
* Sets up theme defaults and registers support for various WordPress features.
|
||||||
|
*
|
||||||
|
* Note that this function is hooked into the after_setup_theme hook, which runs
|
||||||
|
* before the init hook. The init hook is too late for some features, such as indicating
|
||||||
|
* support post thumbnails.
|
||||||
|
*
|
||||||
|
* To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
|
||||||
|
* functions.php file.
|
||||||
|
*
|
||||||
|
* @uses add_theme_support() To add support for post thumbnails and automatic feed links.
|
||||||
|
* @uses register_nav_menus() To add support for navigation menus.
|
||||||
|
* @uses add_custom_background() To add support for a custom background.
|
||||||
|
* @uses add_editor_style() To style the visual editor.
|
||||||
|
* @uses load_theme_textdomain() For translation/localization support.
|
||||||
|
* @uses add_custom_image_header() To add support for a custom header.
|
||||||
|
* @uses register_default_headers() To register the default custom header images provided with the theme.
|
||||||
|
* @uses set_post_thumbnail_size() To set a custom post thumbnail size.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_setup() {
|
||||||
|
|
||||||
|
// This theme styles the visual editor with editor-style.css to match the theme style.
|
||||||
|
add_editor_style();
|
||||||
|
|
||||||
|
// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
|
||||||
|
add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
|
||||||
|
|
||||||
|
// This theme uses post thumbnails
|
||||||
|
add_theme_support( 'post-thumbnails' );
|
||||||
|
|
||||||
|
// Add default posts and comments RSS feed links to head
|
||||||
|
add_theme_support( 'automatic-feed-links' );
|
||||||
|
|
||||||
|
// Make theme available for translation
|
||||||
|
// Translations can be filed in the /languages/ directory
|
||||||
|
load_theme_textdomain( 'twentyten', TEMPLATEPATH . '/languages' );
|
||||||
|
|
||||||
|
$locale = get_locale();
|
||||||
|
$locale_file = TEMPLATEPATH . "/languages/$locale.php";
|
||||||
|
if ( is_readable( $locale_file ) )
|
||||||
|
require_once( $locale_file );
|
||||||
|
|
||||||
|
// This theme uses wp_nav_menu() in one location.
|
||||||
|
register_nav_menus( array(
|
||||||
|
'primary' => __( 'Primary Navigation', 'twentyten' ),
|
||||||
|
) );
|
||||||
|
|
||||||
|
// This theme allows users to set a custom background
|
||||||
|
add_custom_background();
|
||||||
|
|
||||||
|
// Your changeable header business starts here
|
||||||
|
if ( ! defined( 'HEADER_TEXTCOLOR' ) )
|
||||||
|
define( 'HEADER_TEXTCOLOR', '' );
|
||||||
|
|
||||||
|
// No CSS, just IMG call. The %s is a placeholder for the theme template directory URI.
|
||||||
|
if ( ! defined( 'HEADER_IMAGE' ) )
|
||||||
|
define( 'HEADER_IMAGE', '%s/images/headers/path.jpg' );
|
||||||
|
|
||||||
|
// The height and width of your custom header. You can hook into the theme's own filters to change these values.
|
||||||
|
// Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values.
|
||||||
|
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) );
|
||||||
|
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 198 ) );
|
||||||
|
|
||||||
|
// We'll be using post thumbnails for custom header images on posts and pages.
|
||||||
|
// We want them to be 940 pixels wide by 198 pixels tall.
|
||||||
|
// Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
|
||||||
|
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
|
||||||
|
|
||||||
|
// Don't support text inside the header image.
|
||||||
|
if ( ! defined( 'NO_HEADER_TEXT' ) )
|
||||||
|
define( 'NO_HEADER_TEXT', true );
|
||||||
|
|
||||||
|
// Add a way for the custom header to be styled in the admin panel that controls
|
||||||
|
// custom headers. See twentyten_admin_header_style(), below.
|
||||||
|
add_custom_image_header( '', 'twentyten_admin_header_style' );
|
||||||
|
|
||||||
|
// ... and thus ends the changeable header business.
|
||||||
|
|
||||||
|
// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
|
||||||
|
register_default_headers( array(
|
||||||
|
'berries' => array(
|
||||||
|
'url' => '%s/images/headers/berries.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Berries', 'twentyten' )
|
||||||
|
),
|
||||||
|
'cherryblossom' => array(
|
||||||
|
'url' => '%s/images/headers/cherryblossoms.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Cherry Blossoms', 'twentyten' )
|
||||||
|
),
|
||||||
|
'concave' => array(
|
||||||
|
'url' => '%s/images/headers/concave.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Concave', 'twentyten' )
|
||||||
|
),
|
||||||
|
'fern' => array(
|
||||||
|
'url' => '%s/images/headers/fern.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Fern', 'twentyten' )
|
||||||
|
),
|
||||||
|
'forestfloor' => array(
|
||||||
|
'url' => '%s/images/headers/forestfloor.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Forest Floor', 'twentyten' )
|
||||||
|
),
|
||||||
|
'inkwell' => array(
|
||||||
|
'url' => '%s/images/headers/inkwell.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Inkwell', 'twentyten' )
|
||||||
|
),
|
||||||
|
'path' => array(
|
||||||
|
'url' => '%s/images/headers/path.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Path', 'twentyten' )
|
||||||
|
),
|
||||||
|
'sunset' => array(
|
||||||
|
'url' => '%s/images/headers/sunset.jpg',
|
||||||
|
'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
|
||||||
|
/* translators: header image description */
|
||||||
|
'description' => __( 'Sunset', 'twentyten' )
|
||||||
|
)
|
||||||
|
) );
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
|
||||||
|
/**
|
||||||
|
* Styles the header image displayed on the Appearance > Header admin panel.
|
||||||
|
*
|
||||||
|
* Referenced via add_custom_image_header() in twentyten_setup().
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_admin_header_style() {
|
||||||
|
?>
|
||||||
|
<style type="text/css">
|
||||||
|
/* Shows the same border as on front end */
|
||||||
|
#headimg {
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
border-top: 4px solid #000;
|
||||||
|
}
|
||||||
|
/* If NO_HEADER_TEXT is false, you would style the text with these selectors:
|
||||||
|
#headimg #name { }
|
||||||
|
#headimg #desc { }
|
||||||
|
*/
|
||||||
|
</style>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
|
||||||
|
*
|
||||||
|
* To override this in a child theme, remove the filter and optionally add
|
||||||
|
* your own function tied to the wp_page_menu_args filter hook.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_page_menu_args( $args ) {
|
||||||
|
$args['show_home'] = true;
|
||||||
|
return $args;
|
||||||
|
}
|
||||||
|
add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the post excerpt length to 40 characters.
|
||||||
|
*
|
||||||
|
* To override this length in a child theme, remove the filter and add your own
|
||||||
|
* function tied to the excerpt_length filter hook.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
function twentyten_excerpt_length( $length ) {
|
||||||
|
return 40;
|
||||||
|
}
|
||||||
|
add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a "Continue Reading" link for excerpts
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @return string "Continue Reading" link
|
||||||
|
*/
|
||||||
|
function twentyten_continue_reading_link() {
|
||||||
|
return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) . '</a>';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyten_continue_reading_link().
|
||||||
|
*
|
||||||
|
* To override this in a child theme, remove the filter and add your own
|
||||||
|
* function tied to the excerpt_more filter hook.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @return string An ellipsis
|
||||||
|
*/
|
||||||
|
function twentyten_auto_excerpt_more( $more ) {
|
||||||
|
return ' …' . twentyten_continue_reading_link();
|
||||||
|
}
|
||||||
|
add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a pretty "Continue Reading" link to custom post excerpts.
|
||||||
|
*
|
||||||
|
* To override this link in a child theme, remove the filter and add your own
|
||||||
|
* function tied to the get_the_excerpt filter hook.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @return string Excerpt with a pretty "Continue Reading" link
|
||||||
|
*/
|
||||||
|
function twentyten_custom_excerpt_more( $output ) {
|
||||||
|
if ( has_excerpt() && ! is_attachment() ) {
|
||||||
|
$output .= twentyten_continue_reading_link();
|
||||||
|
}
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
add_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove inline styles printed when the gallery shortcode is used.
|
||||||
|
*
|
||||||
|
* Galleries are styled by the theme in Twenty Ten's style.css. This is just
|
||||||
|
* a simple filter call that tells WordPress to not use the default styles.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.2
|
||||||
|
*/
|
||||||
|
add_filter( 'use_default_gallery_style', '__return_false' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deprecated way to remove inline styles printed when the gallery shortcode is used.
|
||||||
|
*
|
||||||
|
* This function is no longer needed or used. Use the use_default_gallery_style
|
||||||
|
* filter instead, as seen above.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @deprecated Deprecated in Twenty Ten 1.2 for WordPress 3.1
|
||||||
|
*
|
||||||
|
* @return string The gallery style filter, with the styles themselves removed.
|
||||||
|
*/
|
||||||
|
function twentyten_remove_gallery_css( $css ) {
|
||||||
|
return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );
|
||||||
|
}
|
||||||
|
// Backwards compatibility with WordPress 3.0.
|
||||||
|
if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) )
|
||||||
|
add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
|
||||||
|
|
||||||
|
if ( ! function_exists( 'twentyten_comment' ) ) :
|
||||||
|
/**
|
||||||
|
* Template for comments and pingbacks.
|
||||||
|
*
|
||||||
|
* To override this walker in a child theme without modifying the comments template
|
||||||
|
* simply create your own twentyten_comment(), and that function will be used instead.
|
||||||
|
*
|
||||||
|
* Used as a callback by wp_list_comments() for displaying the comments.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_comment( $comment, $args, $depth ) {
|
||||||
|
$GLOBALS['comment'] = $comment;
|
||||||
|
switch ( $comment->comment_type ) :
|
||||||
|
case '' :
|
||||||
|
?>
|
||||||
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
||||||
|
<div id="comment-<?php comment_ID(); ?>">
|
||||||
|
<div class="comment-author vcard">
|
||||||
|
<?php echo get_avatar( $comment, 40 ); ?>
|
||||||
|
<?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
|
||||||
|
</div><!-- .comment-author .vcard -->
|
||||||
|
<?php if ( $comment->comment_approved == '0' ) : ?>
|
||||||
|
<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
|
||||||
|
<br />
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
|
||||||
|
<?php
|
||||||
|
/* translators: 1: date, 2: time */
|
||||||
|
printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' );
|
||||||
|
?>
|
||||||
|
</div><!-- .comment-meta .commentmetadata -->
|
||||||
|
|
||||||
|
<div class="comment-body"><?php comment_text(); ?></div>
|
||||||
|
|
||||||
|
<div class="reply">
|
||||||
|
<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
||||||
|
</div><!-- .reply -->
|
||||||
|
</div><!-- #comment-## -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
case 'pingback' :
|
||||||
|
case 'trackback' :
|
||||||
|
?>
|
||||||
|
<li class="post pingback">
|
||||||
|
<p><?php _e( 'Pingback:', 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); ?></p>
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
endswitch;
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
|
||||||
|
*
|
||||||
|
* To override twentyten_widgets_init() in a child theme, remove the action hook and add your own
|
||||||
|
* function tied to the init hook.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
* @uses register_sidebar
|
||||||
|
*/
|
||||||
|
function twentyten_widgets_init() {
|
||||||
|
// Area 1, located at the top of the sidebar.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'Primary Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'primary-widget-area',
|
||||||
|
'description' => __( 'The primary widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'Secondary Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'secondary-widget-area',
|
||||||
|
'description' => __( 'The secondary widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Area 3, located in the footer. Empty by default.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'First Footer Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'first-footer-widget-area',
|
||||||
|
'description' => __( 'The first footer widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Area 4, located in the footer. Empty by default.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'Second Footer Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'second-footer-widget-area',
|
||||||
|
'description' => __( 'The second footer widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Area 5, located in the footer. Empty by default.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'Third Footer Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'third-footer-widget-area',
|
||||||
|
'description' => __( 'The third footer widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Area 6, located in the footer. Empty by default.
|
||||||
|
register_sidebar( array(
|
||||||
|
'name' => __( 'Fourth Footer Widget Area', 'twentyten' ),
|
||||||
|
'id' => 'fourth-footer-widget-area',
|
||||||
|
'description' => __( 'The fourth footer widget area', 'twentyten' ),
|
||||||
|
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
|
||||||
|
'after_widget' => '</li>',
|
||||||
|
'before_title' => '<h3 class="widget-title">',
|
||||||
|
'after_title' => '</h3>',
|
||||||
|
) );
|
||||||
|
}
|
||||||
|
/** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
|
||||||
|
add_action( 'widgets_init', 'twentyten_widgets_init' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes the default styles that are packaged with the Recent Comments widget.
|
||||||
|
*
|
||||||
|
* To override this in a child theme, remove the filter and optionally add your own
|
||||||
|
* function tied to the widgets_init action hook.
|
||||||
|
*
|
||||||
|
* This function uses a filter (show_recent_comments_widget_style) new in WordPress 3.1
|
||||||
|
* to remove the default style. Using Twenty Ten 1.2 in WordPress 3.0 will show the styles,
|
||||||
|
* but they won't have any effect on the widget in default Twenty Ten styling.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_remove_recent_comments_style() {
|
||||||
|
add_filter( 'show_recent_comments_widget_style', '__return_false' );
|
||||||
|
}
|
||||||
|
add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
|
||||||
|
|
||||||
|
if ( ! function_exists( 'twentyten_posted_on' ) ) :
|
||||||
|
/**
|
||||||
|
* Prints HTML with meta information for the current post-date/time and author.
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_posted_on() {
|
||||||
|
printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
|
||||||
|
'meta-prep meta-prep-author',
|
||||||
|
sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
|
||||||
|
get_permalink(),
|
||||||
|
esc_attr( get_the_time() ),
|
||||||
|
get_the_date()
|
||||||
|
),
|
||||||
|
sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
|
||||||
|
get_author_posts_url( get_the_author_meta( 'ID' ) ),
|
||||||
|
sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
|
||||||
|
get_the_author()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
if ( ! function_exists( 'twentyten_posted_in' ) ) :
|
||||||
|
/**
|
||||||
|
* Prints HTML with meta information for the current post (category, tags and permalink).
|
||||||
|
*
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
function twentyten_posted_in() {
|
||||||
|
// Retrieves tag list of current post, separated by commas.
|
||||||
|
$tag_list = get_the_tag_list( '', ', ' );
|
||||||
|
if ( $tag_list ) {
|
||||||
|
$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
|
||||||
|
} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
|
||||||
|
$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
|
||||||
|
} else {
|
||||||
|
$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
|
||||||
|
}
|
||||||
|
// Prints the string, replacing the placeholders.
|
||||||
|
printf(
|
||||||
|
$posted_in,
|
||||||
|
get_the_category_list( ', ' ),
|
||||||
|
$tag_list,
|
||||||
|
get_permalink(),
|
||||||
|
the_title_attribute( 'echo=0' )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
endif;
|
||||||
90
src/wp-content/themes/twentyten/header.php
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The Header for our theme.
|
||||||
|
*
|
||||||
|
* Displays all of the <head> section and everything up till <div id="main">
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?><!DOCTYPE html>
|
||||||
|
<html <?php language_attributes(); ?>>
|
||||||
|
<head>
|
||||||
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
||||||
|
<title><?php
|
||||||
|
/*
|
||||||
|
* Print the <title> tag based on what is being viewed.
|
||||||
|
*/
|
||||||
|
global $page, $paged;
|
||||||
|
|
||||||
|
wp_title( '|', true, 'right' );
|
||||||
|
|
||||||
|
// Add the blog name.
|
||||||
|
bloginfo( 'name' );
|
||||||
|
|
||||||
|
// Add the blog description for the home/front page.
|
||||||
|
$site_description = get_bloginfo( 'description', 'display' );
|
||||||
|
if ( $site_description && ( is_home() || is_front_page() ) )
|
||||||
|
echo " | $site_description";
|
||||||
|
|
||||||
|
// Add a page number if necessary:
|
||||||
|
if ( $paged >= 2 || $page >= 2 )
|
||||||
|
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
|
||||||
|
|
||||||
|
?></title>
|
||||||
|
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||||
|
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
|
||||||
|
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
|
||||||
|
<?php
|
||||||
|
/* We add some JavaScript to pages with the comment form
|
||||||
|
* to support sites with threaded comments (when in use).
|
||||||
|
*/
|
||||||
|
if ( is_singular() && get_option( 'thread_comments' ) )
|
||||||
|
wp_enqueue_script( 'comment-reply' );
|
||||||
|
|
||||||
|
/* Always have wp_head() just before the closing </head>
|
||||||
|
* tag of your theme, or you will break many plugins, which
|
||||||
|
* generally use this hook to add elements to <head> such
|
||||||
|
* as styles, scripts, and meta tags.
|
||||||
|
*/
|
||||||
|
wp_head();
|
||||||
|
?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body <?php body_class(); ?>>
|
||||||
|
<div id="wrapper" class="hfeed">
|
||||||
|
<div id="header">
|
||||||
|
<div id="masthead">
|
||||||
|
<div id="branding" role="banner">
|
||||||
|
<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
|
||||||
|
<<?php echo $heading_tag; ?> id="site-title">
|
||||||
|
<span>
|
||||||
|
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
||||||
|
</span>
|
||||||
|
</<?php echo $heading_tag; ?>>
|
||||||
|
<div id="site-description"><?php bloginfo( 'description' ); ?></div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
|
||||||
|
if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
|
||||||
|
has_post_thumbnail( $post->ID ) &&
|
||||||
|
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
|
||||||
|
$image[1] >= HEADER_IMAGE_WIDTH ) :
|
||||||
|
// Houston, we have a new header image!
|
||||||
|
echo get_the_post_thumbnail( $post->ID );
|
||||||
|
elseif ( get_header_image() ) : ?>
|
||||||
|
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
|
||||||
|
<?php endif; ?>
|
||||||
|
</div><!-- #branding -->
|
||||||
|
|
||||||
|
<div id="access" role="navigation">
|
||||||
|
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
|
||||||
|
<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
|
||||||
|
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
|
||||||
|
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
|
||||||
|
</div><!-- #access -->
|
||||||
|
</div><!-- #masthead -->
|
||||||
|
</div><!-- #header -->
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
After Width: | Height: | Size: 5.6 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/berries.jpg
Normal file
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/concave.jpg
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/fern.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/forestfloor.jpg
Normal file
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/inkwell.jpg
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/path.jpg
Normal file
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/wp-content/themes/twentyten/images/headers/sunset.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
src/wp-content/themes/twentyten/images/wordpress.png
Normal file
|
After Width: | Height: | Size: 849 B |
32
src/wp-content/themes/twentyten/index.php
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The main template file.
|
||||||
|
*
|
||||||
|
* This is the most generic template file in a WordPress theme
|
||||||
|
* and one of the two required files for a theme (the other being style.css).
|
||||||
|
* It is used to display a page when nothing more specific matches a query.
|
||||||
|
* E.g., it puts together the home page when no home.php file exists.
|
||||||
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop to output the posts.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-index.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'index' );
|
||||||
|
?>
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
408
src/wp-content/themes/twentyten/languages/twentyten.pot
Normal file
@ -0,0 +1,408 @@
|
|||||||
|
# Copyright (C) 2010 Twenty Ten
|
||||||
|
# This file is distributed under the same license as the Twenty Ten package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Twenty Ten 1.2\n"
|
||||||
|
"Report-Msgid-Bugs-To: http://wordpress.org/tag/twentyten\n"
|
||||||
|
"POT-Creation-Date: 2011-06-13 13:27:47+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
||||||
|
#: loop-attachment.php:21
|
||||||
|
msgid "Return to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s - title of parent post
|
||||||
|
#: loop-attachment.php:23
|
||||||
|
msgid "<span class=\"meta-nav\">←</span> %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:32
|
||||||
|
msgid "<span class=\"%1$s\">By</span> %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:36 functions.php:476
|
||||||
|
msgid "View all posts by %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:43
|
||||||
|
msgid "<span class=\"%1$s\">Published</span> %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:53
|
||||||
|
msgid "Full size is %s pixels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:56
|
||||||
|
msgid "Link to full-size image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:63 loop-attachment.php:111 loop.php:100 loop.php:123
|
||||||
|
#: loop.php:165 loop-page.php:30 loop-single.php:56
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:104 loop.php:115 loop.php:143 functions.php:248
|
||||||
|
msgid "Continue reading <span class=\"meta-nav\">→</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-attachment.php:105 loop.php:144 loop-page.php:29 loop-single.php:34
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. #-#-#-#-# twentyten.pot (Twenty Ten 1.2) #-#-#-#-#
|
||||||
|
#. Theme URI of the plugin/theme
|
||||||
|
#: footer.php:33
|
||||||
|
msgid "http://wordpress.org/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: footer.php:33
|
||||||
|
msgid "Semantic Personal Publishing Platform"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: footer.php:33
|
||||||
|
msgid "Proudly powered by %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: category.php:16
|
||||||
|
msgid "Category Archives: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sidebar.php:27
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sidebar.php:34
|
||||||
|
msgid "Meta"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tag.php:16
|
||||||
|
msgid "Tag Archives: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:18
|
||||||
|
msgid ""
|
||||||
|
"This post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:35
|
||||||
|
msgid "One Response to %2$s"
|
||||||
|
msgid_plural "%1$s Responses to %2$s"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: comments.php:41 comments.php:60
|
||||||
|
msgid "<span class=\"meta-nav\">←</span> Older Comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:42 comments.php:61
|
||||||
|
msgid "Newer Comments <span class=\"meta-nav\">→</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:72
|
||||||
|
msgid "Comments are closed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:16 loop.php:33
|
||||||
|
msgid "Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid ""
|
||||||
|
"Apologies, but the page you requested could not be found. Perhaps searching "
|
||||||
|
"will help."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:25 loop.php:178
|
||||||
|
msgid "<span class=\"meta-nav\">←</span> Older posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:26 loop.php:179
|
||||||
|
msgid "Newer posts <span class=\"meta-nav\">→</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:35
|
||||||
|
msgid ""
|
||||||
|
"Apologies, but no results were found for the requested archive. Perhaps "
|
||||||
|
"searching will help find a related post."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:60 loop.php:95 loop.php:96
|
||||||
|
msgctxt "gallery category slug"
|
||||||
|
msgid "gallery"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:62 loop.php:83 loop.php:131
|
||||||
|
msgid "Permalink to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:82
|
||||||
|
msgid "This gallery contains <a %1$s>%2$s photo</a>."
|
||||||
|
msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: loop.php:93
|
||||||
|
msgid "View Galleries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:93 loop.php:96
|
||||||
|
msgid "More Galleries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:96
|
||||||
|
msgid "View posts in the Gallery category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:99 loop.php:122 loop.php:164
|
||||||
|
msgid "Leave a comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:99 loop.php:122 loop.php:164
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:99 loop.php:122 loop.php:164
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:106
|
||||||
|
msgctxt "asides category slug"
|
||||||
|
msgid "asides"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:151
|
||||||
|
msgid "<span class=\"%1$s\">Posted in</span> %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop.php:160
|
||||||
|
msgid "<span class=\"%1$s\">Tagged</span> %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:100
|
||||||
|
msgid "Primary Navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:140
|
||||||
|
msgid "Berries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:146
|
||||||
|
msgid "Cherry Blossoms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:152
|
||||||
|
msgid "Concave"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:158
|
||||||
|
msgid "Fern"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:164
|
||||||
|
msgid "Forest Floor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:170
|
||||||
|
msgid "Inkwell"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:176
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: header image description
|
||||||
|
#: functions.php:182
|
||||||
|
msgid "Sunset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:330
|
||||||
|
msgid "%s <span class=\"says\">says:</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:333
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: date, 2: time
|
||||||
|
#: functions.php:340
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:340 functions.php:357
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:357
|
||||||
|
msgid "Pingback:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:376
|
||||||
|
msgid "Primary Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:378
|
||||||
|
msgid "The primary widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:387
|
||||||
|
msgid "Secondary Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:389
|
||||||
|
msgid "The secondary widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:398
|
||||||
|
msgid "First Footer Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:400
|
||||||
|
msgid "The first footer widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:409
|
||||||
|
msgid "Second Footer Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:411
|
||||||
|
msgid "The second footer widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:420
|
||||||
|
msgid "Third Footer Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:422
|
||||||
|
msgid "The third footer widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:431
|
||||||
|
msgid "Fourth Footer Widget Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:433
|
||||||
|
msgid "The fourth footer widget area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:467
|
||||||
|
msgid ""
|
||||||
|
"<span class=\"%1$s\">Posted on</span> %2$s <span class=\"meta-sep\">by</"
|
||||||
|
"span> %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:493
|
||||||
|
msgid ""
|
||||||
|
"This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" "
|
||||||
|
"title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:495
|
||||||
|
msgid ""
|
||||||
|
"This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title="
|
||||||
|
"\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: functions.php:497
|
||||||
|
msgid ""
|
||||||
|
"Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark"
|
||||||
|
"\">permalink</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: header.php:33
|
||||||
|
msgid "Page %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: header.php:83
|
||||||
|
msgid "Skip to content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: author.php:27
|
||||||
|
msgid "Author Archives: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: author.php:37 loop-single.php:43
|
||||||
|
msgid "About %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: search.php:16
|
||||||
|
msgid "Search Results for: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: search.php:26
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: search.php:28
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search criteria. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-single.php:21 loop-single.php:61
|
||||||
|
msgctxt "Previous post link"
|
||||||
|
msgid "←"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-single.php:22 loop-single.php:62
|
||||||
|
msgctxt "Next post link"
|
||||||
|
msgid "→"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: loop-single.php:47
|
||||||
|
msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: archive.php:33
|
||||||
|
msgid "Daily Archives: <span>%s</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: archive.php:35
|
||||||
|
msgid "Monthly Archives: <span>%s</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: archive.php:37
|
||||||
|
msgid "Yearly Archives: <span>%s</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: archive.php:39
|
||||||
|
msgid "Blog Archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Theme Name of the plugin/theme
|
||||||
|
msgid "Twenty Ten"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid ""
|
||||||
|
"The 2010 theme for WordPress is stylish, customizable, simple, and readable "
|
||||||
|
"-- make it yours with a custom menu, header image, and background. Twenty "
|
||||||
|
"Ten supports six widgetized areas (two in the sidebar, four in the footer) "
|
||||||
|
"and featured images (thumbnails for gallery posts and custom header images "
|
||||||
|
"for posts and pages). It includes stylesheets for print and the admin Visual "
|
||||||
|
"Editor, special styles for posts in the \"Asides\" and \"Gallery\" "
|
||||||
|
"categories, and has an optional one-column page template that removes the "
|
||||||
|
"sidebar."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "the WordPress team"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Tags of the plugin/theme
|
||||||
|
msgid ""
|
||||||
|
"black, blue, white, two-columns, fixed-width, custom-header, custom-"
|
||||||
|
"background, threaded-comments, sticky-post, translation-ready, microformats, "
|
||||||
|
"rtl-language-support, editor-style, custom-menu"
|
||||||
|
msgstr ""
|
||||||
281
src/wp-content/themes/twentyten/license.txt
Normal file
@ -0,0 +1,281 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
51 Franklin St, Fifth Floor, Boston, MA 02110, USA
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
117
src/wp-content/themes/twentyten/loop-attachment.php
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The loop that displays an attachment.
|
||||||
|
*
|
||||||
|
* The loop displays the posts and the post content. See
|
||||||
|
* http://codex.wordpress.org/The_Loop to understand it and
|
||||||
|
* http://codex.wordpress.org/Template_Tags to understand
|
||||||
|
* the tags used in it.
|
||||||
|
*
|
||||||
|
* This can be overridden in child themes with loop-attachment.php.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.2
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||||||
|
|
||||||
|
<?php if ( ! empty( $post->post_parent ) ) : ?>
|
||||||
|
<p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php
|
||||||
|
/* translators: %s - title of parent post */
|
||||||
|
printf( __( '<span class="meta-nav">←</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
|
||||||
|
?></a></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
<h2 class="entry-title"><?php the_title(); ?></h2>
|
||||||
|
|
||||||
|
<div class="entry-meta">
|
||||||
|
<?php
|
||||||
|
printf( __( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
|
||||||
|
'meta-prep meta-prep-author',
|
||||||
|
sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
|
||||||
|
get_author_posts_url( get_the_author_meta( 'ID' ) ),
|
||||||
|
sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
|
||||||
|
get_the_author()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<?php
|
||||||
|
printf( __( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
|
||||||
|
'meta-prep meta-prep-entry-date',
|
||||||
|
sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
|
||||||
|
esc_attr( get_the_time() ),
|
||||||
|
get_the_date()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
if ( wp_attachment_is_image() ) {
|
||||||
|
echo ' <span class="meta-sep">|</span> ';
|
||||||
|
$metadata = wp_get_attachment_metadata();
|
||||||
|
printf( __( 'Full size is %s pixels', 'twentyten' ),
|
||||||
|
sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>',
|
||||||
|
wp_get_attachment_url(),
|
||||||
|
esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
|
||||||
|
$metadata['width'],
|
||||||
|
$metadata['height']
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-meta -->
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<div class="entry-attachment">
|
||||||
|
<?php if ( wp_attachment_is_image() ) :
|
||||||
|
$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
|
||||||
|
foreach ( $attachments as $k => $attachment ) {
|
||||||
|
if ( $attachment->ID == $post->ID )
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$k++;
|
||||||
|
// If there is more than 1 image attachment in a gallery
|
||||||
|
if ( count( $attachments ) > 1 ) {
|
||||||
|
if ( isset( $attachments[ $k ] ) )
|
||||||
|
// get the URL of the next image attachment
|
||||||
|
$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
|
||||||
|
else
|
||||||
|
// or get the URL of the first image attachment
|
||||||
|
$next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
|
||||||
|
} else {
|
||||||
|
// or, if there's only 1 image attachment, get the URL of the image
|
||||||
|
$next_attachment_url = wp_get_attachment_url();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<p class="attachment"><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
|
||||||
|
$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
|
||||||
|
$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
|
||||||
|
echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
|
||||||
|
?></a></p>
|
||||||
|
|
||||||
|
<div id="nav-below" class="navigation">
|
||||||
|
<div class="nav-previous"><?php previous_image_link( false ); ?></div>
|
||||||
|
<div class="nav-next"><?php next_image_link( false ); ?></div>
|
||||||
|
</div><!-- #nav-below -->
|
||||||
|
<?php else : ?>
|
||||||
|
<a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div><!-- .entry-attachment -->
|
||||||
|
<div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
|
||||||
|
|
||||||
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
|
||||||
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
||||||
|
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
|
||||||
|
<div class="entry-utility">
|
||||||
|
<?php twentyten_posted_in(); ?>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-utility -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
|
||||||
|
<?php endwhile; // end of the loop. ?>
|
||||||
36
src/wp-content/themes/twentyten/loop-page.php
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The loop that displays a page.
|
||||||
|
*
|
||||||
|
* The loop displays the posts and the post content. See
|
||||||
|
* http://codex.wordpress.org/The_Loop to understand it and
|
||||||
|
* http://codex.wordpress.org/Template_Tags to understand
|
||||||
|
* the tags used in it.
|
||||||
|
*
|
||||||
|
* This can be overridden in child themes with loop-page.php.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.2
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||||||
|
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
<?php if ( is_front_page() ) { ?>
|
||||||
|
<h2 class="entry-title"><?php the_title(); ?></h2>
|
||||||
|
<?php } else { ?>
|
||||||
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content(); ?>
|
||||||
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<?php comments_template( '', true ); ?>
|
||||||
|
|
||||||
|
<?php endwhile; // end of the loop. ?>
|
||||||
67
src/wp-content/themes/twentyten/loop-single.php
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The loop that displays a single post.
|
||||||
|
*
|
||||||
|
* The loop displays the posts and the post content. See
|
||||||
|
* http://codex.wordpress.org/The_Loop to understand it and
|
||||||
|
* http://codex.wordpress.org/Template_Tags to understand
|
||||||
|
* the tags used in it.
|
||||||
|
*
|
||||||
|
* This can be overridden in child themes with loop-single.php.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.2
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||||||
|
|
||||||
|
<div id="nav-above" class="navigation">
|
||||||
|
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
|
||||||
|
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
|
||||||
|
</div><!-- #nav-above -->
|
||||||
|
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||||
|
|
||||||
|
<div class="entry-meta">
|
||||||
|
<?php twentyten_posted_on(); ?>
|
||||||
|
</div><!-- .entry-meta -->
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content(); ?>
|
||||||
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
|
||||||
|
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
|
||||||
|
<div id="entry-author-info">
|
||||||
|
<div id="author-avatar">
|
||||||
|
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
|
||||||
|
</div><!-- #author-avatar -->
|
||||||
|
<div id="author-description">
|
||||||
|
<h2><?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
|
||||||
|
<?php the_author_meta( 'description' ); ?>
|
||||||
|
<div id="author-link">
|
||||||
|
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
|
||||||
|
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?>
|
||||||
|
</a>
|
||||||
|
</div><!-- #author-link -->
|
||||||
|
</div><!-- #author-description -->
|
||||||
|
</div><!-- #entry-author-info -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="entry-utility">
|
||||||
|
<?php twentyten_posted_in(); ?>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-utility -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<div id="nav-below" class="navigation">
|
||||||
|
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
|
||||||
|
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
|
||||||
|
</div><!-- #nav-below -->
|
||||||
|
|
||||||
|
<?php comments_template( '', true ); ?>
|
||||||
|
|
||||||
|
<?php endwhile; // end of the loop. ?>
|
||||||
181
src/wp-content/themes/twentyten/loop.php
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The loop that displays posts.
|
||||||
|
*
|
||||||
|
* The loop displays the posts and the post content. See
|
||||||
|
* http://codex.wordpress.org/The_Loop to understand it and
|
||||||
|
* http://codex.wordpress.org/Template_Tags to understand
|
||||||
|
* the tags used in it.
|
||||||
|
*
|
||||||
|
* This can be overridden in child themes with loop.php or
|
||||||
|
* loop-template.php, where 'template' is the loop context
|
||||||
|
* requested by a template. For example, loop-index.php would
|
||||||
|
* be used if it exists and we ask for the loop with:
|
||||||
|
* <code>get_template_part( 'loop', 'index' );</code>
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php /* Display navigation to next/previous pages when applicable */ ?>
|
||||||
|
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
|
||||||
|
<div id="nav-above" class="navigation">
|
||||||
|
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div>
|
||||||
|
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
|
||||||
|
</div><!-- #nav-above -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php /* If there are no posts to display, such as an empty archive page */ ?>
|
||||||
|
<?php if ( ! have_posts() ) : ?>
|
||||||
|
<div id="post-0" class="post error404 not-found">
|
||||||
|
<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
|
||||||
|
<?php get_search_form(); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
</div><!-- #post-0 -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Start the Loop.
|
||||||
|
*
|
||||||
|
* In Twenty Ten we use the same loop in multiple contexts.
|
||||||
|
* It is broken into three main parts: when we're displaying
|
||||||
|
* posts that are in the gallery category, when we're displaying
|
||||||
|
* posts in the asides category, and finally all other posts.
|
||||||
|
*
|
||||||
|
* Additionally, we sometimes check for whether we are on an
|
||||||
|
* archive page, a search page, etc., allowing for small differences
|
||||||
|
* in the loop on each template without actually duplicating
|
||||||
|
* the rest of the loop that is shared.
|
||||||
|
*
|
||||||
|
* Without further ado, the loop:
|
||||||
|
*/ ?>
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
|
||||||
|
<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
|
||||||
|
|
||||||
|
<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
|
||||||
|
|
||||||
|
<div class="entry-meta">
|
||||||
|
<?php twentyten_posted_on(); ?>
|
||||||
|
</div><!-- .entry-meta -->
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php if ( post_password_required() ) : ?>
|
||||||
|
<?php the_content(); ?>
|
||||||
|
<?php else : ?>
|
||||||
|
<?php
|
||||||
|
$images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
|
||||||
|
if ( $images ) :
|
||||||
|
$total_images = count( $images );
|
||||||
|
$image = array_shift( $images );
|
||||||
|
$image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
|
||||||
|
?>
|
||||||
|
<div class="gallery-thumb">
|
||||||
|
<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
|
||||||
|
</div><!-- .gallery-thumb -->
|
||||||
|
<p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
|
||||||
|
'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
|
||||||
|
number_format_i18n( $total_images )
|
||||||
|
); ?></em></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php the_excerpt(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
|
||||||
|
<div class="entry-utility">
|
||||||
|
<?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?>
|
||||||
|
<a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
|
||||||
|
<a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<?php endif; ?>
|
||||||
|
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-utility -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
|
||||||
|
|
||||||
|
<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?>
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
|
||||||
|
<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
|
||||||
|
<div class="entry-summary">
|
||||||
|
<?php the_excerpt(); ?>
|
||||||
|
</div><!-- .entry-summary -->
|
||||||
|
<?php else : ?>
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="entry-utility">
|
||||||
|
<?php twentyten_posted_on(); ?>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-utility -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<?php /* How to display all other posts. */ ?>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
|
||||||
|
|
||||||
|
<div class="entry-meta">
|
||||||
|
<?php twentyten_posted_on(); ?>
|
||||||
|
</div><!-- .entry-meta -->
|
||||||
|
|
||||||
|
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
|
||||||
|
<div class="entry-summary">
|
||||||
|
<?php the_excerpt(); ?>
|
||||||
|
</div><!-- .entry-summary -->
|
||||||
|
<?php else : ?>
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
|
||||||
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="entry-utility">
|
||||||
|
<?php if ( count( get_the_category() ) ) : ?>
|
||||||
|
<span class="cat-links">
|
||||||
|
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
|
||||||
|
</span>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php
|
||||||
|
$tags_list = get_the_tag_list( '', ', ' );
|
||||||
|
if ( $tags_list ):
|
||||||
|
?>
|
||||||
|
<span class="tag-links">
|
||||||
|
<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
|
||||||
|
</span>
|
||||||
|
<span class="meta-sep">|</span>
|
||||||
|
<?php endif; ?>
|
||||||
|
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
|
||||||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
|
||||||
|
</div><!-- .entry-utility -->
|
||||||
|
</div><!-- #post-## -->
|
||||||
|
|
||||||
|
<?php comments_template( '', true ); ?>
|
||||||
|
|
||||||
|
<?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
|
||||||
|
|
||||||
|
<?php endwhile; // End the loop. Whew. ?>
|
||||||
|
|
||||||
|
<?php /* Display navigation to next/previous pages when applicable */ ?>
|
||||||
|
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
|
||||||
|
<div id="nav-below" class="navigation">
|
||||||
|
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div>
|
||||||
|
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
|
||||||
|
</div><!-- #nav-below -->
|
||||||
|
<?php endif; ?>
|
||||||
31
src/wp-content/themes/twentyten/onecolumn-page.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Template Name: One column, no sidebar
|
||||||
|
*
|
||||||
|
* A custom page template without sidebar.
|
||||||
|
*
|
||||||
|
* The "Template Name:" bit above allows this to be selectable
|
||||||
|
* from a dropdown menu on the edit page screen.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container" class="one-column">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop to output the page.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-page.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'page' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
32
src/wp-content/themes/twentyten/page.php
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying all pages.
|
||||||
|
*
|
||||||
|
* This is the template that displays all pages by default.
|
||||||
|
* Please note that this is the WordPress construct of pages
|
||||||
|
* and that other 'pages' on your WordPress site will use a
|
||||||
|
* different template.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop to output the page.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-page.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'page' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
285
src/wp-content/themes/twentyten/rtl.css
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
/*
|
||||||
|
Theme Name: Twenty Ten
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
RTL Basics
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body {
|
||||||
|
direction:rtl;
|
||||||
|
unicode-bidi:embed;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
LAYOUT: Two-Column (Right)
|
||||||
|
DESCRIPTION: Two-column fixed layout with one sidebar right of content
|
||||||
|
*/
|
||||||
|
|
||||||
|
#container {
|
||||||
|
float: right;
|
||||||
|
margin: 0 0 0 -240px;
|
||||||
|
}
|
||||||
|
#content {
|
||||||
|
margin: 0 20px 36px 280px;
|
||||||
|
}
|
||||||
|
#primary,
|
||||||
|
#secondary {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#secondary {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* =Fonts
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
body,
|
||||||
|
input,
|
||||||
|
textarea,
|
||||||
|
.page-title span,
|
||||||
|
.pingback a.url,
|
||||||
|
h3#comments-title,
|
||||||
|
h3#reply-title,
|
||||||
|
#access .menu,
|
||||||
|
#access div.menu ul,
|
||||||
|
#cancel-comment-reply-link,
|
||||||
|
.form-allowed-tags,
|
||||||
|
#site-info,
|
||||||
|
#site-title,
|
||||||
|
#wp-calendar,
|
||||||
|
.comment-meta,
|
||||||
|
.comment-body tr th,
|
||||||
|
.comment-body thead th,
|
||||||
|
.entry-content label,
|
||||||
|
.entry-content tr th,
|
||||||
|
.entry-content thead th,
|
||||||
|
.entry-meta,
|
||||||
|
.entry-title,
|
||||||
|
.entry-utility,
|
||||||
|
#respond label,
|
||||||
|
.navigation,
|
||||||
|
.page-title,
|
||||||
|
.pingback p,
|
||||||
|
.reply,
|
||||||
|
.widget-title,
|
||||||
|
input[type=submit] {
|
||||||
|
font-family: Arial, Tahoma, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Structure
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* The main theme structure */
|
||||||
|
#footer-widget-area .widget-area {
|
||||||
|
float: right;
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
#footer-widget-area #fourth {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
#site-info {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
#site-generator {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* =Global Elements
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* Text elements */
|
||||||
|
ul, ol {
|
||||||
|
margin: 0 1.5em 18px 0;
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Text meant only for screen readers */
|
||||||
|
.screen-reader-text {
|
||||||
|
left: auto;
|
||||||
|
text-indent:-9000px;
|
||||||
|
overflow:hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* =Header
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#site-title {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
#site-description {
|
||||||
|
clear: left;
|
||||||
|
float: left;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
#branding img {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Menu
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#access {
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#access .menu-header,
|
||||||
|
div.menu {
|
||||||
|
margin-right: 12px;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#access .menu-header li,
|
||||||
|
div.menu li{
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#access ul ul {
|
||||||
|
left:auto;
|
||||||
|
right:0;
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
#access ul ul ul {
|
||||||
|
left:auto;
|
||||||
|
right:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Content
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#content table {
|
||||||
|
text-align: right;
|
||||||
|
margin: 0 0 24px -1px;
|
||||||
|
}
|
||||||
|
.page-title span {
|
||||||
|
font-style:normal;
|
||||||
|
}
|
||||||
|
.entry-title,
|
||||||
|
.entry-meta {
|
||||||
|
clear: right;
|
||||||
|
float: right;
|
||||||
|
margin-left: 68px;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry-content input.file,
|
||||||
|
.entry-content input.button {
|
||||||
|
margin-left: 24px;
|
||||||
|
margin-right:0;
|
||||||
|
}
|
||||||
|
.entry-content blockquote.left {
|
||||||
|
float: right;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-left: 24px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.entry-content blockquote.right {
|
||||||
|
float: left;
|
||||||
|
margin-right: 24px;
|
||||||
|
margin-left: 0;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#entry-author-info #author-avatar {
|
||||||
|
float: right;
|
||||||
|
margin: 0 0 0 -104px;
|
||||||
|
}
|
||||||
|
#entry-author-info #author-description {
|
||||||
|
float: right;
|
||||||
|
margin: 0 104px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Gallery listing
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
.category-gallery .gallery-thumb {
|
||||||
|
float: right;
|
||||||
|
margin-left:20px;
|
||||||
|
margin-right:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Images
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#content .gallery .gallery-caption {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content .gallery .gallery-item {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Navigation
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
.nav-previous {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.nav-next {
|
||||||
|
float: left;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Comments
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
.commentlist li.comment {
|
||||||
|
padding: 0 56px 0 0;
|
||||||
|
}
|
||||||
|
.commentlist .avatar {
|
||||||
|
right: 0;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.comment-author .says, #comments .pingback .url {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Comments form */
|
||||||
|
.children #respond {
|
||||||
|
margin: 0 0 0 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Widget Areas
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
.widget-area ul {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.widget-area ul ul {
|
||||||
|
margin-right: 1.3em;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
#wp-calendar caption {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#wp-calendar tfoot #next {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main sidebars */
|
||||||
|
#main .widget-area ul {
|
||||||
|
margin-right: 0;
|
||||||
|
padding: 0 0 0 20px;
|
||||||
|
}
|
||||||
|
#main .widget-area ul ul {
|
||||||
|
margin-right: 1.3em;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =Footer
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
#site-generator {
|
||||||
|
font-style:normal;
|
||||||
|
}
|
||||||
|
#site-generator a {
|
||||||
|
background-position: right center;
|
||||||
|
padding-right: 20px;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
BIN
src/wp-content/themes/twentyten/screenshot.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
37
src/wp-content/themes/twentyten/search.php
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Search Results pages.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php if ( have_posts() ) : ?>
|
||||||
|
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
||||||
|
<?php
|
||||||
|
/* Run the loop for the search to output the results.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-search.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'search' );
|
||||||
|
?>
|
||||||
|
<?php else : ?>
|
||||||
|
<div id="post-0" class="post no-results not-found">
|
||||||
|
<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
|
||||||
|
<?php get_search_form(); ?>
|
||||||
|
</div><!-- .entry-content -->
|
||||||
|
</div><!-- #post-0 -->
|
||||||
|
<?php endif; ?>
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
60
src/wp-content/themes/twentyten/sidebar-footer.php
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The Footer widget areas.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* The footer widget area is triggered if any of the areas
|
||||||
|
* have widgets. So let's check that first.
|
||||||
|
*
|
||||||
|
* If none of the sidebars have widgets, then let's bail early.
|
||||||
|
*/
|
||||||
|
if ( ! is_active_sidebar( 'first-footer-widget-area' )
|
||||||
|
&& ! is_active_sidebar( 'second-footer-widget-area' )
|
||||||
|
&& ! is_active_sidebar( 'third-footer-widget-area' )
|
||||||
|
&& ! is_active_sidebar( 'fourth-footer-widget-area' )
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
// If we get this far, we have widgets. Let do this.
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="footer-widget-area" role="complementary">
|
||||||
|
|
||||||
|
<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
|
||||||
|
<div id="first" class="widget-area">
|
||||||
|
<ul class="xoxo">
|
||||||
|
<?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #first .widget-area -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
|
||||||
|
<div id="second" class="widget-area">
|
||||||
|
<ul class="xoxo">
|
||||||
|
<?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #second .widget-area -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
|
||||||
|
<div id="third" class="widget-area">
|
||||||
|
<ul class="xoxo">
|
||||||
|
<?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #third .widget-area -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
|
||||||
|
<div id="fourth" class="widget-area">
|
||||||
|
<ul class="xoxo">
|
||||||
|
<?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #fourth .widget-area -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</div><!-- #footer-widget-area -->
|
||||||
56
src/wp-content/themes/twentyten/sidebar.php
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The Sidebar containing the primary and secondary widget areas.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="primary" class="widget-area" role="complementary">
|
||||||
|
<ul class="xoxo">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* When we call the dynamic_sidebar() function, it'll spit out
|
||||||
|
* the widgets for that widget area. If it instead returns false,
|
||||||
|
* then the sidebar simply doesn't exist, so we'll hard-code in
|
||||||
|
* some default sidebar stuff just in case.
|
||||||
|
*/
|
||||||
|
if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
|
||||||
|
|
||||||
|
<li id="search" class="widget-container widget_search">
|
||||||
|
<?php get_search_form(); ?>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li id="archives" class="widget-container">
|
||||||
|
<h3 class="widget-title"><?php _e( 'Archives', 'twentyten' ); ?></h3>
|
||||||
|
<ul>
|
||||||
|
<?php wp_get_archives( 'type=monthly' ); ?>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li id="meta" class="widget-container">
|
||||||
|
<h3 class="widget-title"><?php _e( 'Meta', 'twentyten' ); ?></h3>
|
||||||
|
<ul>
|
||||||
|
<?php wp_register(); ?>
|
||||||
|
<li><?php wp_loginout(); ?></li>
|
||||||
|
<?php wp_meta(); ?>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<?php endif; // end primary widget area ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #primary .widget-area -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
// A second sidebar for widgets, just because.
|
||||||
|
if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
|
||||||
|
|
||||||
|
<div id="secondary" class="widget-area" role="complementary">
|
||||||
|
<ul class="xoxo">
|
||||||
|
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
|
||||||
|
</ul>
|
||||||
|
</div><!-- #secondary .widget-area -->
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
27
src/wp-content/themes/twentyten/single.php
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The Template for displaying all single posts.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop to output the post.
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-single.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'single' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
1357
src/wp-content/themes/twentyten/style.css
Normal file
30
src/wp-content/themes/twentyten/tag.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying Tag Archive pages.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Twenty_Ten
|
||||||
|
* @since Twenty Ten 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
<div id="content" role="main">
|
||||||
|
|
||||||
|
<h1 class="page-title"><?php
|
||||||
|
printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
|
||||||
|
?></h1>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* Run the loop for the tag archive to output the posts
|
||||||
|
* If you want to overload this in a child theme then include a file
|
||||||
|
* called loop-tag.php and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'loop', 'tag' );
|
||||||
|
?>
|
||||||
|
</div><!-- #content -->
|
||||||
|
</div><!-- #container -->
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
<?php get_footer(); ?>
|
||||||
BIN
src/wp-content/uploads/2011/07/lqdvi_logo_corazon1-150x150.gif
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
src/wp-content/uploads/2011/07/lqdvi_logo_corazon1.gif
Normal file
|
After Width: | Height: | Size: 9.1 KiB |