如何创建一个woocommerce页面,其中标题可以手动设置,不会调用任何设计/主题?
我的方法是在wp-content / uploads文件夹中创建一个php文件,但是如何在那里访问像WC_Order这样的类? 其他方法是在wordpress中创建一个新页面并使用短代码,但然后我的主题将被加载,这是我不想要的。
答案 0 :(得分:1)
激活woo commerce插件后使用全局变量
global $woocommerce;
您可以通过该页面访问那些可以手动设置标题并且不会调用任何设计/主题的页面。
查看以下链接以添加自定义页面: Create a Custom Page
答案 1 :(得分:0)
如果您想创建没有主题样式的空白模板页面,请将get_header();
替换为
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title"
content="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?> <!-- Important! - Must be -->
</head>