wphigh
Forum Replies Created
-
Forum: Plugins
In reply to: [Modern Related Posts] making it workRelate via same category or same post tag. Set this option at the settings / modern-related-posts /Related via
Forum: Plugins
In reply to: [Modern Related Posts] Php Code?Do you mean that display slide posts to the homepage rather than related posts at the single page?
Please describe your requirements in detail.
Forum: Themes and Templates
In reply to: [Virtue] Change Footer Widget WidthAdd the following code in the style.css file
`#containerfooter .menu li a {
max-width: none;
}Forum: Fixing WordPress
In reply to: Image ErrorMay be anyone of plugins, deactivate all and try again.
Forum: Fixing WordPress
In reply to: Access IssueForum: Themes and Templates
In reply to: [Gridz] Remove featured image in simple postForum: Fixing WordPress
In reply to: Google analytics status: 'Tracking Not Installed'Read my article: http://www.wphigh.com/insert-google-analytics-code.html
1. Add custom field. name: my_custom_link, value: http://ww.wp.xz.cn. See http://codex.ww.wp.xz.cn/Custom_Fields#Usage
2. Change
the_permalink();
to
echo esc_url( get_post_meta( get_the_ID(), 'my_custom_link', true ) );in content-home.php file. edit function the_permalink(). I suggest you use custom fields to change it.
Forum: Installing WordPress
In reply to: transfer wordpress not workingYou only upload PHP files, not posta data.
You must find your database and restore.Forum: Themes and Templates
In reply to: [Fifteen] Removing Side Bar in Theme 15Do you select page template: full width.
see: http://codex.ww.wp.xz.cn/Page_TemplatesForum: Themes and Templates
In reply to: [Fifteen] Removing Side Bar in Theme 15theme 15?
try add below code to style.css
.full-width: {width: 100%;}Forum: Themes and Templates
In reply to: [Fifteen] Removing Side Bar in Theme 15Your web site link?
Forum: Themes and Templates
In reply to: [Fifteen] Removing Side Bar in Theme 15I can’t see side bar in this code. But footer use widgets. try remove this code:
<?php get_sidebar('footer'); ?>Forum: Themes and Templates
In reply to: twenty fourteen style sheetexample:
wp_enqueue_style( 'style', get_stylesheet_uri() );
But I suggest you should study basic knowledge first, such as html, css, PHP, javascript if you want to become a WordPress developer. You can’t design a good theme or plugin without basic.