Questions tagged «themes»

WordPress主题是文件的集合,这些文件一起工作以产生具有用于博客的基础统一设计的图形界面。

1
链接到特定的“定制程序”部分
我有一个站点,其中包含一些额外的定制程序部分。有没有一种方法可以直接链接到这些文件,以便在页面加载时打开该节? 就像是 http://mysites.com/wp-admin/customize.php#fonts 屏幕截图http://new.tinygrab.com/96412a96d208cf8ff0cf5803327b2d29e0ca68810e.png

1
子主题-在functions.php中覆盖'require_once'
我试图用子主题修改wordpress主题。我的父主题在functions.php中具有以下功能: require_once(get_template_directory() . "/includes/theme-styles.php"); 我想更改它以包含我自己的样式表: require_once(get_template_directory() . "../child-theme/includes/theme-styles.php"); 我可以在子主题的functions.php中包含此函数,但是由于首先加载了子主题的functions.php,因此我看不到任何方法来覆盖/阻止父主题的require_once()。有什么方法可以做到这一点,或者有可能的解决方法?谢谢

3
从媒体上传器获取缩略图的网址
我想从WordPress 3.5媒体上传器中选择图片。我可以使用以下代码获取图像URL,但它会获取完整尺寸的图像。我要获取缩略图网址,如何获取? var custom_uploader; $('.upload-image').click(function(e) { e.preventDefault(); if (custom_uploader) { custom_uploader.open(); return; } custom_uploader = wp.media.frames.file_frame = wp.media({ title: 'Choose Image', button: { text: 'Choose Image' }, multiple: false }); //When a file is selected, grab the URL custom_uploader.on('select', function() { attachment = custom_uploader.state().get('selection').first().toJSON(); var abc = attachment.url; //this is …

2
未定义的偏移量:0 in> […] /wp-includes/capabilities.php,行1067
嘿,我在本地主机设置中收到此错误消息,但仅在启用Genesis Framework的情况下;WordPress 21可以正常工作。当我要创建新帖子时会发生这种情况。如果我刷新页面,该错误将重复出现,但帖子本身会创建,并且一切似乎都正常。 有谁知道是什么原因造成的? Notice: Undefined offset: 0 in /var/www/secret/htdocs/wp-includes/capabilities.php on line 1067 Notice: Undefined offset: 0 in /var/www/secret/htdocs/wp-includes/capabilities.php on line 1067 Warning: Cannot modify header information - headers already sent by (output started at /var/www/secret/htdocs/wp-includes/capabilities.php:1067) in /var/www/secret/htdocs/wp-includes/pluggable.php on line 876 这是一个新安装的未修改的Genesis Framework。

1
插件和主题中的共享功能
我最近开始开发插件和主题,并且发现我需要在两者上使用多个功能。 有时我想在声明此功能之前,先检查功能/类是否存在:何时检查功能是否存在 但这被认为是不好的做法。防止冲突并保持主题和插件独立工作而不安装一个主题/插件的最佳实践是什么?

4
针对特定类别的产品的不同模板。WooCommerce
例如,我有类别咖啡机,以及一个用于咖啡机单一产品模板的模板,但是对于类别咖啡,我想具有不同的single-product.php模板,如何实现呢?我无法访问此帖子http://www.woothemes.com/support-forum/?viewtopic=83667,但是它有类似的问题,WordPress中的页面和类别很简单,但是如何在woocommerce中做到这一点?
8 themes  plugins 

2
对管理员显示不同的主题?
我想在我的直播网站上测试一些主题更改,但是显然我不希望普通用户看到任何可能的错误。我只想复制主题文件夹,如果我以管理员身份登录,则该主题将显示给我,否则,旧主题将显示给我的用户。 有插件可以做到这一点吗?
8 themes  testing 

1
包和子包有何注释?
这包含在主题和插件中。 /* * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ 他们是干什么的?我读过它们是标准的,依此类推,但是它的实际用途是什么?

4
register_sidebar()和get_sidebar()如何一起工作?
免责声明:我是WP的新手。 我正在使用Starkers HTML5框架主题。在中,functions.php我看到以下代码: function starkers_widgets_init() { // Area 1, located at the top of the sidebar. register_sidebar( array( 'name' => __( 'Primary Widget Area', 'starkers' ), 'id' => 'primary-widget-area', 'description' => __( 'The primary widget area', 'starkers' ), 'before_widget' => '<li>', 'after_widget' => '</li>', 'before_title' => '<h3>', 'after_title' => '</h3>', …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.