您当前的位置:首页 > TAG信息列表 > switch

  • 模板循环-添加开关柜php

    时间:2018-11-08

    我的插件模板当前如下: if ( $query->have_posts() ) { ?> <ul id=\"list-con\"> <?php while ($query->have_posts()) { $query->the_post(); ?> <li>

  • 管理员登录后如何在两个表单之间切换?

    时间:2015-10-10

    我有两张表格(form1 和form2). 一旦管理员登录到任何地方,我的WordPress站点的所有访问者(未登录)都应该看到form1 在页面上,否则他们应该看到form2. 我正在自定义页面模板中使用此代码:if ( current_user_can( \'author\' ) || current_user_can( \'administrator\' ) ) { // show form1 } else { // show form2

  • 注销用户的不同主页

    时间:2017-01-01

    我创建网站,我需要有不同的登录和注销用户的主页。我有一个页面“主页”,它被设置为主页,里面充满了关于我的网站和图片的信息,还有一个简单的页面“主页登录”,它被设置为BuddyPress活动流。我需要的是:-用户A正在访问网站,但他没有登录,可以将“主页”作为主页查看-用户B正在访问网站,他已登录,可以将“主页登录”作为主页查看。我试图通过将此代码插入到我的主题函数中来实现它。php:function switch_homepage() { if ( is_user_logged_in() ) {&

  • 使用Switch语句根据主题ID的最后一位更改图像

    时间:2017-03-29

    我正在尝试构建一个函数,根据bbp_get_topic_id().<到目前为止,我得到的是:function bg_image_topic_titlearea() { $letztezifferimgs = substr(\"\'.bbp_get_topic_id().\'\", -1); switch ($letztezifferimgs) { case \"0\": echo \"https://test.bewusstewelt.

  • 开关与IF语句组合在一起

    时间:2019-03-29

    我无法运行此功能。我注释掉的内容正在正常运行,但我想对特定的用户角色使用开关。。。add_action( \'um_members_just_after_name\', \'my_members_after_user_name\', 10, 1 ); function my_members_after_user_name( $user_id ) { $user = new WP_User( $user_id ); /* if( $user-

  • change template with button

    时间:2020-02-24

    我用代码创建了插件:function fxn($theme) { if(isset($_POST[\'zmien\'])){ $theme = \'loose\';} else{ $theme = \'twentytwenty\';} return $theme; } add_filter(\'template\', \'fxn\'); add_filter(\'option_template\'

  • RTL/LTR frontend switcher

    时间:2016-01-26

    我有一个支持RTL的主题。什么时候Appearance->Theme settings->Right-to-Left (RTL) text orientation 已正确启用主题切换。但我想在主菜单中添加两个项目,以从前端切换方向:如何将主题切换到RTL模式?

  • 帮助编写一个定制的php脚本来设置页面或帖子的最高优先级

    时间:2016-04-10

    我正在努力改进本教程script 包括switch 在第一个if指定自定义的条件priority 仅限于某些帖子或页面。所以我想告诉Yoastif some pages have certain id the priority have to change, 但我的脚本将0.5值分配给所有页面。有什么帮助吗?add_filter( \'wpseo_xml_sitemap_post_priority\', \'my_custom_post_xml_priority\', 10, 3 );