Changeset 3386
- Timestamp:
- 11/10/2010 09:35:54 PM (15 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 10 edited
-
archive.php (modified) (1 diff)
-
attachment.php (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
header.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
links.php (modified) (1 diff)
-
page.php (modified) (1 diff)
-
search.php (modified) (1 diff)
-
searchform.php (modified) (1 diff)
-
single.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/archive.php
r3306 r3386 23 23 <?php do_action( 'bp_before_blog_post' ) ?> 24 24 25 <div class="post" id="post-<?php the_ID(); ?>">25 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 26 26 27 27 <div class="author-box"> -
trunk/bp-themes/bp-default/attachment.php
r2425 r3386 13 13 <?php do_action( 'bp_before_blog_post' ) ?> 14 14 15 <?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?>15 <?php $attachment_link = wp_get_attachment_link($post->ID, array(450, 800)); // This also populates the iconsize for the next line ?> 16 16 <?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?> 17 17 18 <div class="post" id="post-<?php the_ID(); ?>">18 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 19 19 20 20 <h2 class="posttitle"><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> → <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> -
trunk/bp-themes/bp-default/functions.php
r3380 r3386 3 3 if ( !class_exists( 'BP_Core_User' ) ) 4 4 return false; 5 6 add_theme_support( 'automatic-feed-links' ); 5 7 6 8 // Register the widget columns -
trunk/bp-themes/bp-default/header.php
r3325 r3386 26 26 <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> | <?php bp_current_group_name() ?> | <?php _e( 'Group Activity RSS Feed', 'buddypress' ) ?>" href="<?php bp_group_activity_feed_link() ?>" /> 27 27 <?php endif; ?> 28 29 <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> <?php _e( 'Blog Posts RSS Feed', 'buddypress' ) ?>" href="<?php bloginfo('rss2_url'); ?>" />30 <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> <?php _e( 'Blog Posts Atom Feed', 'buddypress' ) ?>" href="<?php bloginfo('atom_url'); ?>" />31 28 32 29 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> -
trunk/bp-themes/bp-default/index.php
r3306 r3386 14 14 <?php do_action( 'bp_before_blog_post' ) ?> 15 15 16 <div class="post" id="post-<?php the_ID(); ?>">16 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 17 17 18 18 <div class="author-box"> -
trunk/bp-themes/bp-default/links.php
r2170 r3386 17 17 18 18 <ul id="links-list"> 19 <?php get_links_list(); ?>19 <?php wp_list_bookmarks(); ?> 20 20 </ul> 21 21 -
trunk/bp-themes/bp-default/page.php
r3334 r3386 12 12 <h2 class="pagetitle"><?php the_title(); ?></h2> 13 13 14 <div class="post" id="post-<?php the_ID(); ?>">14 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 15 15 16 16 <div class="entry"> -
trunk/bp-themes/bp-default/search.php
r3306 r3386 23 23 <?php do_action( 'bp_before_blog_post' ) ?> 24 24 25 <div class="post" id="post-<?php the_ID(); ?>">25 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 26 26 27 27 <div class="author-box"> 28 <?php echo get_avatar( get_the_author_ email(), '50' ); ?>28 <?php echo get_avatar( get_the_author_meta( 'email' ), '50' ); ?> 29 29 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 30 30 </div> -
trunk/bp-themes/bp-default/searchform.php
r2170 r3386 1 1 <?php do_action( 'bp_before_blog_search_form' ) ?> 2 2 3 <form method="get" id="searchform" action="<?php bloginfo('url');?>/">3 <form method="get" id="searchform" action="<?php echo home_url() ?>/"> 4 4 <input type="text" value="<?php the_search_query(); ?>" name="s" id="s" /> 5 5 <input type="submit" id="searchsubmit" value="<?php _e( 'Search', 'buddypress' ) ?>" /> -
trunk/bp-themes/bp-default/single.php
r3306 r3386 17 17 </div> 18 18 19 <div class="post" id="post-<?php the_ID(); ?>">19 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 20 20 21 21 <div class="author-box">
Note: See TracChangeset
for help on using the changeset viewer.