为什么我的页面中的内容无法显示?

时间:2018-01-11 07:53:15

标签: wordpress

我编辑了一个新页面,这是内容。

enter image description here

发布并查看。

enter image description here

为什么没有显示?
主题是"二十四"。

string img = username + "_" + labTestId + fb;
var element2 = image;
MemoryStream ms = new MemoryStream(Convert.FromBase64String(element2));
byte[] imagesbytes = ms.ToArray();
string folder_name = "lab-orders";
folder_name = folder_name.ToLower();
string SaveLocation = ServerConfig.BlobPath + folder_name + "/" + fb+imagesbytes;
BlobUploader.UploadTo(folder_name,img, ms);

//   var filePath = HttpContext.Current.Server.MapPath("~/Userimage/" + postedFile.FileName + extension);
var filePath = HttpContext.Current.Server.MapPath(SaveLocation + postedFile.FileName + extension);

postedFile.SaveAs(filePath);

为什么所有的双引号都是sudo cat /var/www/html/wp/wp-content/themes/twentyfourteen-child/page.php <?php /* Template Name: Custom Front Page */ ?> <?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages and that * other ‘pages’ on your WordPress site will use a different template. * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <div id=”main-content” class=”main-content”> <div id=”primary” class=”content-area”> <div id=”content” class=”site-content” role=”main”> <p>it is a test</p> </div><!– #content –> </div><!– #primary –> <?php get_sidebar( ‘content’ ); ?> </div><!– #main-content –> <?php 而不是,单引号是"而不是

  1. 如何让我的页面显示?
  2. 引号是否格式正确?

1 个答案:

答案 0 :(得分:1)

  1. 您不会在网站上打印内容。最好的方法是使用WordPress循环。所以代码看起来应该是这样的:
  2. <?php </* Template Name: Custom Front Page */ ?>
    
    <?php get_header(); ?>
      <div id="main-content" class="main-content">
        <div id=”primary” class=”content-area”>
          <div id="content" class="site-content" role="main">
            <?php if(have_posts): while(have_posts): the_post(); ?>
               <h1><?php the_title(); ?>
               <?php the_content(); ?>
            <?php endwhile; endif; ?>
          </div>
        </div>
        <?php get_sidebar( 'content' ); ?>
    </div>
    <?php get_footer(); ?>
    
    1. 不应该是"'