pcmehrdad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How Can I Get the Bookmark IDthanks!
Thats Ok!<ul> <?php $b = get_bookmarks('title_li=&categorize=0&limit=10&category_name=linkdooni&orderby=id&order=DESC'); foreach ($b as $bookmark){ echo '<li><a href="'; bloginfo('url'); echo '/link.php?id='.$bookmark->link_id.'" target="_blank">'.$bookmark->link_name.'</a> ['.$bookmark->link_clicks.' کلیک]</li>'; } ?> </ul>Forum: Fixing WordPress
In reply to: How Can I Get the Bookmark IDthanks! but
I want to use the id of the links with wp_list_bookmarks function in my theme!!
i need the IDs of Links!Forum: Fixing WordPress
In reply to: permalinks and .htaccess permission: is 666 safe?!!!
Forum: Fixing WordPress
In reply to: Why do all my dynamic links begin with HTTPS?remove
define(‘FORCE_SSL_ADMIN’, true);from your wp-config.php file!
or a line like that contain ssl !Forum: Fixing WordPress
In reply to: How to combine two domains under one site?use the domain theme plugin!
but first park one of domains on another (use host control panel or help via hosting support!)! then install the plugin and goto settings page of the plugin and add the new domain with your custom theme!the link:
http://wordpress.org/extend/plugins/domain-theme/Forum: Fixing WordPress
In reply to: Does anyone have a sample .htaccess for SSL/HTTPS for one page?Once you checked that your webserver can handle SSL, opne your wp-config.php file (Located at the root of your WordPress install) and paste the following:
define(‘FORCE_SSL_ADMIN’, true);
Save the file, and you’re done!Forum: Fixing WordPress
In reply to: Custom Fieldslike http://www.imdbdl.com bro?!
Forum: Themes and Templates
In reply to: slider not showing categories?go tu sidebar.php and replace the categories code with wordpress standars category code!
<?php wp_list_categories('orderby=name'); ?> ?>Forum: Themes and Templates
In reply to: home page with 1 page content posts from 1 category ?You can Include the given home.php code with <?php include(‘home.php’); ?> in anywhare of your theme! the home.php code must be in your theme directory!
Forum: Fixing WordPress
In reply to: permalinks and .htaccess permission: is 666 safe?yes! But so you can not edit it with your code!