Content in footer file

There are a couple of ways this can be achieved. You can create a theme option for the area. I used this as a theme option starter when I built a theme recently: Sample theme options Or You can simply create a widget area for the footer http://codex.wordpress.org/Widgetizing_Themes

Footer with next/previous posts

Maybe I don’t understand the question, sorry in that case. But can’t you just retrieve the last 6 posts excluding the current? Something like: global $post; $footer_posts = wp_get_recent_posts( array(‘post_status’ => ‘publish’, ‘posts_per_page’ => ‘6’, ‘exclude’ => $post->ID), 1 ); if ( ! empty($footer_posts) ) { foreach ( $footer_posts as $post ) { setup_postdata($post); echo … Read more

customize footer widgets area

CSS is a better way to go. Use a different class for the first two widgets than those that follow, so you can position them each where you want them. Float, width, and possibly min / max-width should be all you need to get this working. If every widget is floating left, and the first … Read more

Meta Slider Lite plugin shortcode in post not working

You need to run the content through do_shortcode() – at the moment you’re just echo’ing the raw post content, so nothing gets parsed. echo do_shortcode( $content->post_content ); However, you might be better off implementing a proper “loop” and using the_content() template tag – doing so will ensure everything runs “as normal” (firing all the typical … Read more

WordPress Get Header and Footer using in Admin Area

A very simple experiment… add_action(‘admin_init’,’get_header’); add_action(‘admin_init’,’get_footer’); … will demonstrate that the get_header() and get_footer() functions work on the back end as well as the front, though you will need to adjust for numerous markup problems and other issues. Honestly, you question seems to be “how do I get the site header and footer and use … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)