Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8401739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T21:52:58+00:00 2026-06-09T21:52:58+00:00

I am working with wordpress, when I add <?php bsg_head(); ?> to the header

  • 0

I am working with wordpress, when I add

<?php bsg_head(); ?>

to the header all the content on the page disappears. The formatting from the stylesheet is still applied though as it changes the background colour. Can anyone help me work out why?

single.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php bloginfo('name'); ?> | <?php bloginfo('title'); ?></title>
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" type="text/css" />
<?php bsg_head(); ?>
</head>

<body>

<div class="container_12" id="singlepost">
    <div class="grid_12">

      <?php if (have_posts()) : ?>

      <?php while (have_posts()) : the_post(); ?>

      <h2><?php the_title(); ?></h2>
                <?php the_content(); ?>


      <?php endwhile; ?>


      <?php else : ?>


      <?php endif; ?>

    </div>
    <div class="clear"></div>
</div>




</body>
</html>

style.css

/*
Theme Name:
Theme URI: http://www..co.uk
Description: 
Version: 2
Author: Alex Sadler
Author URI: http://www..co.uk
*/

@charset "UTF-8";
/* CSS Document */

@import url("css/grid.css");
@import url("css/fonts/fonts.css");
@import url("css/coda-slider.css");
@import url("css/jquery.fancybox.css");

body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #FFFFFF;
}
body {
    background-color: #3D341A;
    background-repeat: repeat-x;
    margin: 0px;
    padding: 0px;
}
a:link {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}
a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
a:hover {
    color: #CCCCCC;
    text-decoration: underline;
}
a:active {
    color: #FFFFFF;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    font-family: nexa_boldregular, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 5px 0px 5px;
    padding: 0px;
}
h1 {
    font-size: 18px;
    color: #FFFFFF;
}
h2 {
    font-size: 12px;
    color: #FFFFFF;
}
h3 {
    font-size: 10px;
    color: #FFFFFF;
}
P {
    margin: 0px;
    padding: 0px;
}
IMG {
    border: 0px;
}
.center {
    text-align: center;
}
#contentwrapper {
    padding-bottom: 20px;
}
#header {
    padding-top: 20px;
    position: fixed;
    width: 100%;
    padding-bottom: 20px;
    z-index: 99;
}
#title h1 {
    font-size: 24px;
}
#info {
    text-align: right;
    text-transform: uppercase;
    font: normal 12px nexa_lightregular, Arial, Helvetica, sans-serif;
}
#info .headerphone {
    font-family: nexa_boldregular, Arial, Helvetica, sans-serif;
}
#slogan {
    padding-top: 350px;
    text-shadow: 0px 0px 2px #000;
}
#slogan h1 {
    margin: -30px 0px 0px;
    padding: 0px;
    font: small-caps 120px nexa_boldregular, Arial, Helvetica, sans-serif;
}
#slogan h2 {
    margin: 0px;
    padding: 0px;
    font: small-caps 60px nexa_boldregular, Arial, Helvetica, sans-serif;
}
.block {
    height: 170px;
    width: 260px;
    padding: 20px;
    background: #525055 no-repeat center center;
    float: left;
}
.portfolioblock {
    height: 210px;
    width: 300px;
    background: #525055 no-repeat center center;
    float: left;
    overflow: hidden;
}
.portfolioblock .rollover {
    height: 170px;
    width: 260px;
    padding: 20px;
    background: url(img/rolloverbg.png); 
    margin-top: 210px; 
    -webkit-transition: all 0.2s linear; 
    -moz-transition: all 0.2s linear; 
    -o-transition: all 0.2s linear;
}
.portfolioblock:hover .rollover {
    float: left; 
    margin-top: 0px;
    -webkit-transition: all 0.2s linear; 
    -moz-transition: all 0.2s linear; 
    -o-transition: all 0.2s linear;
}
.portfolioblock img {
    margin-bottom: 20px;
}
.text h1 {
    margin-left: 55px;
    margin-top: 25px;
}
#socialmedia {
    text-align: right;  
}
#singlepost {
    padding-top: 20px;
    padding-bottom: 20px;   
}
#blog a {
    font-weight: normal;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T21:52:59+00:00Added an answer on June 9, 2026 at 9:52 pm

    As far as i’m aware, you need <?php wp_head(); ?>. Don’t forget <?php wp_footer(); ?> in your footer, before your </body> tag, which is generally used for plugins echoing javascript libraries.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on wordpress and I have to add a metabox in case
I'm working on a Sandbox based Wordpress theme and I would like to add
I am working on JW Player and want to add playlist dynamically with wordpress
I'm using the new wordpress custom post types and fields. It's all working great,
I'm working on a WordPress CMS site and I want to add my own
I am working on My Wordpress Blog. the_excerpt(); & <a href=<?php the_permalink(); ?>>Read more</a>
I'm working on a WordPress template and need to add a hyperlink to the
A WordPress build i am working on wants to pull in stories from rss
I have created a simple WordPress page template. I am working on live server.
I am working on a Wordpress plugin and I need to pass PHP array

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.