Hugh's Blog

在 htaccess 文件中设置字符集

网站首页访问 index.html,显示是乱码。本来访问 index.php 文件是没问题的,所以可以在 apache 中使用 DirectoryIndex index.php index.html 来修改默认 index 文件,老严说可以使用 htaccess 文件来设置 ...

 

WordPress 返回带 HTML 标签的内容

今天遇到一个小需求,需要在一篇文章显示另一篇文章的内容。 使用 shortcode 来实现,然后在文章中调用,shortcode 定义需要返回带 html 标签的内容。 functions.php 中添 ...

 

WordPress 获取 Portfolio 某个分类下的子分类

实现流程:get_term_by->get_term_children->loop。 <ul id="filters" class="filter nav nav-pills"> <?php // 获取 post 下的要显示的分类 slug $category_value = get_post_meta($post->ID, ...

 

WordPress 显示某个分类下的文章

之前写过一个在 sidebar 下显示分类文章的,这个也是类似,就不多说了。 直接建立 template 文件。 <?php /** * Template Name: Posts By Category */ get_header(); // 获取 post 的某个字段 (分类 slug),这个是从 ...

 

WordPress 在 Sidebar 中显示某个分类下的文章

实现过程 注册 sidebar widget (register_sidebar) 添加获取分类文章的 shortcode (add_shortcode) 允许在 widget 中使用 shortcode (do_shortcode) 使用的是 cherry framework 主题,所以修改的是主题下的 sidebar-init.php 文件,也可以直接写在 functions.php 文件 <?php // Register sidebars by running cherry_widgets_init() on ...

 
<< Newer Posts Older Posts >>