phpthe
㈠ php The requested resource / was not found on this server.
意思就是頁面沒找到,檢查一下埠,默認文檔等信息
參考:php博客
㈡ wordpress<php the_category('|'); > 怎麼限制數量
the_category調用函數的路徑是:
the_category -> get_the_category_list -> get_the_category
依路徑查看到使用到的hook是『get_the_categories』,該hook返回一組數組
所以,如要限制數量,最直接的方法,就是通過『get_the_categories』這個鉤子,截取其返回的數組就可以了
示例代碼:
add_filter('get_the_categories','wpdit_chunk_the_categories');
functionwpdit_chunk_the_categories($categories)
{
if(is_array($categories)){
$size=2;//指定限制的數量
if($chunk=array_chunk($categories,$size)){
return$chunk[0];
}
}
return$categories;
}
㈢ wordpress中<php the_category(', ') >,怎麼才能添加title=""
我也遇到過這個問題,我用的wordpress版本是3.1.3,我解決的辦法是: 把$wp_query->is_category = false; 修改為 $wp_query->is_category = true; 你可以試試。
㈣ 關於 wordpress <php the_time(''); > 顯示中英文月份的問題
<?php the_time('M'); ?>里的M在中文版WP中輸出中文是因為在輸出前WP中的中文語言包已經自動作了翻譯。
要改為英文顯示,需要把wp-config.php中的
define ('WPLANG', 'zh_CN');
修改為
define ('WPLANG', '');
不過還是建議你安裝英文WP,祝你好運~
㈤ php對象問題<php the_permalink(); >
從文件命名上來看,你好像在用WordPress,the_permalink()方法顯示友情鏈接?
如果a目錄和b目錄wp-load.php的代碼是一樣的為何要拆成兩個文件,代碼一樣,一個文件足夠用;
看上面描述<?php
the_permalink();
?>只是函數級別調用,完全沒有用到類和對象問題;
如果你只是想,不同頁面顯示,不同友情鏈接,完全可以the_permalink()函數添加一個參數做區分即可,the_permalink($type=0)
㈥ <php the_excerpt('Read More...'); > 輸出後換行,怎麼才能令後面的內容不換行
把這段代碼放 「他是張小飛」後面 <?php the_excerpt("Read More..."); ?> <a class="regular" href="<?php the_permalink() ?>">閱讀全文...</a> 去掉P標記就可以了
㈦ wordpress置頂的文章怎麼顯示全文 <php the_content(); > 這段代碼應該插入到下面哪個位置,下面是首頁模
內容應該 插在文章頁面模板中
一般在 <?php the_title(); ?> 下面
㈧ 加了個 <php the_content(); > 代碼,後多了一個換行代碼,請問怎麼去掉
trim($str," "),
str_replace(" ","",$text);
默認的是去掉空格,可以指定要去掉的字元
用替換也行,把指定字元串替換為空