yavarkhan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] want to change the Text Box Size.input-text {
height: 30px !important;
vertical-align: middle;}
#order-comments .input-text {
height: 200px !important;}
Forum: Plugins
In reply to: [Related Posts by Sovrn] how to show related post on a static home pagethx
Forum: Themes and Templates
In reply to: [Customizr] how to show recent Blog post in a static home pagethx
Forum: Plugins
In reply to: [Custom Content Shortcode] show recent post in a rowthx ??
Forum: Plugins
In reply to: [Metaphor Shortcodes] display blog postcould u help me with dat code i have put dat code in child theme style.css and wat shld i do next pls bear wid me im new to all this
Forum: Plugins
In reply to: [Metaphor Shortcodes] display blog postohh gr8 thx for ur help
Forum: Plugins
In reply to: [Metaphor Shortcodes] display blog postbut the only prob is the post content title is going way to long is there any ways i could put $title length
Forum: Plugins
In reply to: [Metaphor Shortcodes] display blog postoh thx
ohh gr*8
Forum: Themes and Templates
In reply to: [Customizr] how to show recent Blog post in a static home pagesir could u help me with a code snippet to declare it in function.php so i could show my recent blog post
Forum: Themes and Templates
In reply to: how to show blog post on a static page wordpressyes i was looking for this but i want my post to appear in a horizontal way not 1 below the other !
Forum: Themes and Templates
In reply to: how to show blog post on a static page wordpresscould u help me to declare this as a function and add_Shortcode so i could
directly call on my home page!Forum: Themes and Templates
In reply to: [Customizr] how to show recent Blog post in a static home pageactually sir im making it in a localhost!
Forum: Themes and Templates
In reply to: how to show blog post on a static page wordpress@alchymyth i made a wp_query in function.php but i would like it to display 5 recent post with thumbnails in a horizontal way
/*** Custom Loop ***/ function demo_loop() { $args = array( 'cat' => 0, 'posts_per_page' => 2 ); $demo_posts = new WP_Query($args); if ( $demo_posts->have_posts() ) { while( $demo_posts->have_posts() ) { $demo_posts->the_post(); $output .= '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>'; } } return $output; } add_shortcode( 'demo_custom_loop', 'demo_loop' );
Forum: Themes and Templates
In reply to: [Customizr] how to show recent Blog post in a static home page@rdellconsulting i made a wp_query in function.php but i would like it to display 5 recent post with thumbnails
/*** Custom Loop ***/ function demo_loop() { $args = array( 'cat' => 0, 'posts_per_page' => 2 ); $demo_posts = new WP_Query($args); if ( $demo_posts->have_posts() ) { while( $demo_posts->have_posts() ) { $demo_posts->the_post(); $output .= '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>'; } } return $output; } add_shortcode( 'demo_custom_loop', 'demo_loop' );