رفتن به مطلب

چگونگی ایجاد فاصله میان برچسپهای سایت


پست های پیشنهاد شده

باسلام و خسته نباشید

میان برچسپهای سایت ما، فاصله ایی وجود نداره، یعنی اینگونه نمایش داده میشه:

چگونه بین برچسپها میتونم فاصله ایجاد کنم مثلا اینطوری

برچسپ اول - برچسپ دوم - برچسپ سوم

 

اینم فایل تگ پوسته

 

<?php
/**
 * Custom template tags for this theme.
 *
 * Eventually, some of the functionality here could be replaced by core features.
 *
 * @package Theme Meme
 */

if ( ! function_exists( 'tabesh_content_nav' ) ) :
/**
 * Display navigation to next/previous pages when applicable.
 */
function tabesh_content_nav( $nav_id ) {
	global $wp_query, $post;

	// Don't print empty markup on single pages if there's nowhere to navigate.
	if ( is_single() ) {
		$previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
		$next = get_adjacent_post( false, '', false );

		if ( ! $next && ! $previous )
			return;
	}

	// Don't print empty markup in archives if there's only one page.
	if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) )
		return;

	$nav_class = ( is_single() ) ? 'post-navigation' : 'paging-navigation';

	?>
	<nav id="<?php echo esc_attr( $nav_id ); ?>" class="clearfix <?php echo $nav_class; ?>" role="navigation">
	 <?php if ( is_single() ) : ?><br><br>

		<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '<i class="fa fa-chevron-right"></i> مطلب قبلی', 'Previous Article', 'tabesh' ) . '</span> %title' ); ?>
		<?php next_post_link( '<div class="nav-next">%link</div>', '<span class="meta-nav">' . _x( 'مطلب بعدی <i class="fa fa-chevron-left"></i>', 'Next Article', 'tabesh' ) . '</span> %title' ); ?>

	<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : ?>

		<?php if ( get_next_posts_link() ) : ?>
		<div class="nav-previous"><?php next_posts_link( __( 'مطالب قدیمی <span class="meta-nav"><i class="fa fa-chevron-left"></i></span>', 'tabesh' ) ); ?></div>
		<?php endif; ?>

		<?php if ( get_previous_posts_link() ) : ?>
		<div class="nav-next"><?php previous_posts_link( __( '<span class="meta-nav"><i class="fa fa-chevron-right"></i></span> مطالب جدید', 'tabesh' ) ); ?></div>
		<?php endif; ?>

	<?php endif; ?>

	</nav><!-- #<?php echo esc_html( $nav_id ); ?> -->
	<?php
}
endif;

if ( ! function_exists( 'tabesh_comment' ) ) :
/**
 * Template for comments and pingbacks.
 *
 * Used as a callback by wp_list_comments() for displaying the comments.
 */
function tabesh_comment( $comment, $args, $depth ) {
	$GLOBALS['comment'] = $comment;

	if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) : ?>

	<li id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>>
		<div class="comment-body">
			<?php _e( 'Pingback:', 'tabesh' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( 'Edit', 'tabesh' ), '<span class="comment-meta"><span class="edit-link"><i class="fa fa-pencil"></i>', '</span></span>' ); ?>
		</div>

	<?php else : ?>

	<li id="comment-<?php comment_ID(); ?>" <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?>>
		<article id="div-comment-<?php comment_ID(); ?>" class="comment-body">
			<div class="comment-meta">
				<?php if ( 0 != $args['avatar_size'] ) echo get_avatar( $comment, $args['avatar_size'] ); ?>
				<?php printf( __( '<strong class="comment-author">%s</strong>', 'tabesh' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
				<span class="comment-date"><?php printf( _x( '%1$s / %2$s', '1: date, 2: time', 'tabesh' ), get_comment_date(), get_comment_time() ); ?></span>
			</div>

			<?php if ( '0' == $comment->comment_approved ) : ?>
			<p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'tabesh' ); ?></p>
			<?php endif; ?>

			<div class="comment-content">
				<?php comment_text(); ?>
			</div>

			<div class="comment-meta comment-footer">
				<?php edit_comment_link( __( 'Edit', 'tabesh' ), '<span class="edit-link"><i class="fa fa-pencil"></i>', '</span>' ); ?>
				<?php
					comment_reply_link( array_merge( $args, array(
						'add_below' => 'div-comment',
						'depth'     => $depth,
						'max_depth' => $args['max_depth'],
						'before'    => '<span class="comment-reply"><i class="fa fa-reply"></i>',
						'after'     => '</span>',
					) ) );
				?>
			</div>
		<!-- #div-comment-<?php comment_ID(); ?> --></article>

	<?php
	endif;
}
endif; // ends check for tabesh_comment()

if ( ! function_exists( 'tabesh_posted_on' ) ) :
/**
 * Prints HTML with meta information for the current post-date/time and author.
 */
function tabesh_posted_on() {
	$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';

	$time_string = sprintf( $time_string,
		esc_attr( get_the_date( 'c' ) ),
		esc_html( get_the_date() ),
		esc_attr( get_the_modified_date( 'c' ) ),
		esc_html( get_the_modified_date() )
	);

	printf( __( '<span class="byline"><i class="fa fa-user"></i>%1$s</span><span class="posted-on"><i class="fa fa-calendar"></i>%2$s</span>', 'tabesh' ),
		sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s">%2$s</a></span>',
			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
			esc_html( get_the_author() )
		),
		sprintf( '<a href="%1$s" rel="bookmark">%2$s</a>',
			esc_url( get_permalink() ),
			$time_string
		)
	);
}
endif;

/**
 * Returns true if a blog has more than 1 category.
 */
function tabesh_categorized_blog() {
	if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) {
		// Create an array of all the categories that are attached to posts.
		$all_the_cool_cats = get_categories( array(
			'hide_empty' => 1,
		) );

		// Count the number of categories that are attached to the posts.
		$all_the_cool_cats = count( $all_the_cool_cats );

		set_transient( 'all_the_cool_cats', $all_the_cool_cats );
	}

	if ( '1' != $all_the_cool_cats ) {
		// This blog has more than 1 category so tabesh_categorized_blog should return true.
		return true;
	} else {
		// This blog has only 1 category so tabesh_categorized_blog should return false.
		return false;
	}
}

/**
 * Flush out the transients used in tabesh_categorized_blog.
 */
function tabesh_category_transient_flusher() {
	// Like, beat it. Dig?
	delete_transient( 'all_the_cool_cats' );
}
add_action( 'edit_category', 'tabesh_category_transient_flusher' );
add_action( 'save_post',     'tabesh_category_transient_flusher' );

 

01.png

لینک به ارسال
 

سلام ودرود

این کد را به فایل استایل پوسته خود اضافه کنید:


span .first a h3{ padding:7px;}

 

سلام 

دست شما درد نکنه

کد رو اضافه کردم

اما هیچ تغییری نکرد (مشکل از کش هم نیست!)

لینک به ارسال
در 3 دقیقه قبل، mk-73 گفته است :

ببخشید همین سایت که داخل امضاتون هست اگر نیست ادرس انلاین بگذارید/

خواهش میکنم

شرمنده نه منظور بنده این سایت است

http://montazar110.com

 

لینک به ارسال

میشه یک پست منتشر کنید وچند برچسب بهش اختصاص بدهید تا من بتونم المانشو در بیارم تا بهتون بگم/یا اینکه خودتون افزونه firebugمرورگر موزیلا را نصب کنید و برروری برچسب های سایت خود یک insepect elementبگیرید وبعد از بدست اوردن المان برچسب ها یک padding:5px;را بهش اختصاص دهید در فایل استایل پوسته اتون/

لینک به ارسال

به گفتگو بپیوندید

هم اکنون می توانید مطلب خود را ارسال نمایید و بعداً ثبت نام کنید. اگر حساب کاربری دارید، برای ارسال با حساب کاربری خود اکنون وارد شوید .

مهمان
ارسال پاسخ به این موضوع ...

×   شما در حال چسباندن محتوایی با قالب بندی هستید.   حذف قالب بندی

  تنها استفاده از 75 اموجی مجاز می باشد.

×   لینک شما به صورت اتوماتیک جای گذاری شد.   نمایش به صورت لینک

×   محتوای قبلی شما بازگردانی شد.   پاک کردن محتوای ویرایشگر

×   شما مستقیما نمی توانید تصویر خود را قرار دهید. یا آن را اینجا بارگذاری کنید یا از یک URL قرار دهید.

×
×
  • اضافه کردن...