如何限制自定义模板(wordpress)中的内容? (会员专业插件)

时间:2018-10-21 02:27:48

标签: html wordpress plugins membership recurring-billing

对于wordpress。 我正在使用Membership Pro插件来限制某些页面的内容。并限制wordpress admin内部的内容可以正常工作。 现在的问题是这样的: 我想使用此插件来限制自定义模板,但是我不知道该怎么做。 我正在使用astra主题。位于cpanel中: public_html / wp-content / themes / astra /

在此文件夹中,我创建了包含我要限制内容的文件。是这样的: 测试主题h1.php

位于此处: / public_html / wp-content / themes / astra / test主题h1.php

现在。里面的代码如下:

<?php 

//* Template Name: Test h1 theme */ 

?> 

<!DOCTYPE html> 

<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 
  <title>Test h1 theme</title> 

</head> 

<body> 

[membership level="3"] 
Restricted content  //THis is the content I want to restrict

[/membership]

</body> 

  

</html> 

短代码通常用于Membership Pro插件来限制内容,但是在这种情况下由于某种原因没有限制任何内容。 自定义模板正在运行(发布时),但根本没有限制内容。 ( 任何人都可以帮忙怎么做?请记住,我是php的基本用户。

0 个答案:

没有答案