我在我的职责中翻了一封信。 php 报告说,对我的主题要求的若干类别进行核查,如果这些类别不在现场,就会发现这些类别。
if(!get_cat_ID( my-category )){wp_create_category( my-category );}
我需要以两种方式修改这一文字......
首先,我需要设立这一类别,使其母类别为“分类”类别(或同上1)。
第二,如果已经存在这种类别,但其母子不是id,我需要这样做。
我在我的职责中翻了一封信。 php 报告说,对我的主题要求的若干类别进行核查,如果这些类别不在现场,就会发现这些类别。
if(!get_cat_ID( my-category )){wp_create_category( my-category );}
我需要以两种方式修改这一文字......
首先,我需要设立这一类别,使其母类别为“分类”类别(或同上1)。
第二,如果已经存在这种类别,但其母子不是id,我需要这样做。
回答你对我先前的答复的评论中提出的问题...... 当用户启动您的主题时,如何操作类别的修改功能?
你们想利用行动。 具体说来,转手——主题。 这是。 没有这方面的具体信息,但使用情况很简单。 你可以把你的职能纳入其中。 php或原始档案中,在功能定义之后,包括
添加“(行动)”的呼吁将在字句中标出的斜线时操作。 转变主题后,转门-me。 重要的是要知道,这 h将为你的工作提供目前新主题的名称,如果你需要的话,你可以认为它是一个论点。 例如,只有在你的主题被启动时,才确保这一职能有效。 如果这一职能属于你的主题职能,我会说。 php案卷,除非启动你的主题,否则它将运作,因此,你可以确定是否需要将主题名称增加一倍。function add_my_categories($my-theme-name){
//if $my-theme-name == my_theme_name
//test if category exists
//if exists, update
//if doesn t exist, create and assign parent
}
add_action( switch_theme , add_my_categories );
首先,如果存在类别,则进行测试。 如果是的话,则使用get_ category_ 即:_ 即:,以获得现有类别的父母。
$parentID = get_category_parents(my-category-ID, false);
其次,second公认论点 of wp_create_ category()是你希望指定为母类的类别。
if(!get_cat_ID( my-category )){wp_create_category( my-category ,parent category ID);}
第三,如果确实存在这一类别,你可使用wp_update_term()来改变其属性。
wp_update_term( $term_id, $taxonomy, $args );
Wordpress issue.. how do I wrap stray text in P tags? Example: Before- <div class = "content"> <img src = "hello.jpg"/> <h1>Introduction</h1> Hello! this is ...
Having a bit of trouble using jQuery plugins (Superfish, jQuery UI, etc) using Wordpress. Everything works fine in my plain non-Wordpress site, but Wordpress seems to conflict with JQuery. There must ...
I need a good solution to be able to style <p> tags differently in a wordpress post. More specifically I need to differentiate between paragraphs and images. Wordpress just wraps all new lines ...
I ve been asked to review a WordPress plugin of sorts and try to find ways of making it faster. The premise of this plugin is basically to store a bunch of users and shifts and appointments and ...
I m referring to the blog administration section. The textarea height is set to 209px inline. How can i change this? I used a program to do a full search within all pages and it couldnt find it. Does ...
On the design I just created for my website, I have a blockquote styled with two quote images using the span technique in css: blockquote { background-image: url(images/openquote.jpg); background-...
What happens? I m guessing that somehow the post or page is parsed before displaying, and then just split into two methods? I can t seem to find any documentation on how the underlying <?php ...
I m trying to write a Wordpress Plug-in but can t seem to figure out how you would modify how a URL gets handled, so for example: any requests made for: <url>/?myplugin=<pageID> will ...